<!--
function imgview(id) {
	var imgviewpopup = window.open("mediaview.php?id="+ id +"&html=yes", "ImageView", "width=100,height=100,fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=no,directories=no,location=no");
	imgviewpopup.focus();
}

function pfdview(id,width,height) {
	var pagepopup = window.open("mediaview.php?id="+id, "PDFview", "width="+ width +",height="+ height +",fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no");
	pagepopup.focus();
}

function popup(url,width,height,title,resizable,scrollbars) {
	if (title=='') title = 'popup';
	if (resizable=='')	resizable = 'no';
	if (scrollbars=='') scrollbars = 'no';
	var anypopup = window.open(url, title, "width="+ width +",height="+ height +",fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars="+ scrollbars +",resizable="+ resizable +",directories=no,location=no");
	anypopup.focus();
}

function page(id,width,height) {
	var pagepopup = window.open("index.php?id="+id, "chdpage", "width="+ width +",height="+ height +",fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no");
	pagepopup.focus();
}
//-->
