/*
	javascript development
	============================
	website 	: 	Kivotos
	date 		: 	8-6-2010		
	author 		: 	mayra metaxa / developer
	company		: 	mozaik creative business solutions
	url			:	http://www.mozaik.com

*/


function windowopen_flash(url)
{
	//alert("ppsaddfas");
	window.open (url, "mywindow","");	
	/*my_window = window.open ('bookframe.php', "my_window","location=no,menubar=no,directories=no,status=no,toolbar=no,resizable=yes");
	my_window.document.write('<html><body><iframe src="'+url+'" width="100%" height="100%"></iframe></body></html>');*/
}

function windowopen(url)
{
	url=Base64.decode(url);
	
	window.open (url, "mywindow","");
	/*my_window = window.open ('bookframe.php', "my_window","location=no,menubar=no,directories=no,status=no,toolbar=no,resizable=yes");
	my_window.document.write('<html><body><iframe src="'+url+'" width="100%" height="100%"></iframe></body></html>');*/
}

function windowopen_ga(url, trackerkey)
{
	url=Base64.decode(url);
	
	pageTracker._trackPageview(trackerkey); 
	
	window.open (url, "mywindow","");
	/*my_window = window.open ('bookframe.php', "my_window","location=no,menubar=no,directories=no,status=no,toolbar=no,resizable=yes");
	my_window.document.write('<html><body><iframe src="'+url+'" width="100%" height="100%"></iframe></body></html>');*/
}


//http://www.javascript-coder.com/window-popup/javascript-window-open.phtml
/*
status	The status bar at the bottom of the window.
toolbar	The standard browser toolbar, with buttons such as Back and Forward.
location	The Location entry field where you enter the URL.
menubar	The menu bar of the window
directories	The standard browser directory buttons, such as What's New and What's Cool
resizable	Allow/Disallow the user to resize the window.
scrollbars	Enable the scrollbars if the document is bigger than the window
height	Specifies the height of the window in pixels. (example: height='350')
width	Specifies the width of the window in pixels.
*/