<!--
//****************************************************************************************
// Open a pop-up page with a photo or video + text
// alizesonline.com - Gilles Gomez - 2003~2008
//****************************************************************************************

//****************************************************************************************
// Variables
//****************************************************************************************
$popUpPageHeight=710;										// The height of the window
$popUpPageWidth=650;										// The width of the window

//****************************************************************************************
// Main function
// $type  -> html or php
// $page  -> name of the player/page to open (without extension)
// $file  -> name of the file to play/read (without extension)
// $dir   -> name of the directory where the player and the file are
// $txt   -> Text to add to the page (title or comment)
//****************************************************************************************
function popUp($type, $page, $file, $dir, $txt, $height){
	if($dir) $dir+="/";
	if(!$height) $height=700;
	
	if($type=="php"){
		eval(window.open($dir+$page+".php?f="+$file+"&t="+$txt,$file,"width=640,height="+$height+",scrollbars=auto,resizable=0,toolbar=0,status=0,menubar=0"));
	}
	else if($type=="html"){
		eval(window.open($dir+$page+".htm",$page,"width=640,height=580,scrollbars=1,resizable=0,toolbar=0,status=0,menubar=0"));
	}
	
	return false;
}
//-->