function htmlPopUp(f, width, height, name, scrollbars)
{
	var iTop  = (screen.height - height) / 2 ;
	var iLeft = (screen.width  - width) / 2 ;

	if (name == null || name == '') {
	    name = "enlarged";
	}
	if (scrollbars == null || scrollbars == '') {
	    scrollbars = "no";
	}

	var sOptions = "toolbar=no";
	sOptions += ",width=" + width;
	sOptions += ",height=" + height;
	sOptions += ",resizable=no";
	sOptions += ",scrollbars=" + scrollbars;
	sOptions += ",left=" + iLeft ;
	sOptions += ",top=" + iTop ;

	var oMyWindow2 = window.open(f, name, sOptions)
	oMyWindow2.focus();
}
/*
function htmlPopUp(f, width, height)
{
	htmlPopUp(f, width, height, '', '');
}
*/
function picpop(f)
{
	var ff = "picpop.php?params=" + f;
	htmlPopUp(ff, 640, 480);
}
function trailer(f)
{
	var ff = "trailer.php?trailer=" + f;
	htmlPopUp(ff, 640, 480);
}
function dl(f) {
	htmlPopUp(f, 300, 400, 'download', 'yes');
}

function reviews(f) {
	htmlPopUp(f, 500, 400, 'reviews', 'yes');
}

function nl(f) {
	htmlPopUp(f, 300, 200, 'newsletter', 'no');
}