
function popUp(file,width,height) {

	var height	= parseInt(height);
	var width	= parseInt(width);
	
	if (width > 800 || height > 600) {
		var scrolling = ',scrollbars=yes,resize=yes';
		width = 800;
		height = 600;
	} else {
		var scrolling = ',scrollbars=auto,resize=yes';
	}
	
	popup = window.open('/rtc-popUp/'+file,'popup','width='+width+',height='+height+scrolling);
}

function setStatus(str) {
	window.status = str;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	newWin = window.open(theURL,winName,features);
}


function showBasket(event) {
	var basket = document.getElementById('smallBasket');
	basket.style.display 	= 'block';
	// basket.style.left		= event.clientX-100;
	// basket.style.top		= event.clientY+20;
}

function hideBasket(event) {
	document.getElementById('smallBasket').style.display = 'none';
}
