function moviePopup(movie) {
	var width = 415;
	var height = 320;
	
	moviePopupWindow = window.open('/index.php?id=mplayer&movie='+movie,'moviePopupWindow','width='+width+',height='+height+'left=40,top=40,scrollbars=no,location=no,menubar=no,resizable=yes,status=no,toolbar=no');
	moviePopupWindow.focus;
}

function openPopup(siteid,width,height) {	
	moviePopupWindow = window.open('/index.php?id='+siteid,'popup'+siteid,'width='+width+',height='+height+'left=40,top=40,scrollbars=yes,location=no,menubar=no,resizable=yes,status=no,toolbar=no');
	moviePopupWindow.focus;
}