// --------------------------------------- Utilities
//
// Written by Abhimanyu Dawar
// January 2007
// Copyright 2007
//
// --------------------------------------- Pop-up Windows

//Used by openPopup to open popup windiows.
function spawn (name, url, width, height, scrollbars, resizable)
{
	var newwindow = window.open ("", name,
		"menubar=no,status=no,width=" + width + ",height=" + height
			+ ",scrollbars=" + (scrollbars ? 'yes' : 'no')
			+ ",toolbar=no,resizable=" + (resizable ? 'yes' : 'no'));

	if (newwindow.document.location.href.indexOf (url) == -1)
		newwindow.document.location.href = url;

	newwindow.focus ();
	
	return newwindow;
}

//to open popup windows.
function openPopup(page, height, scrollbars)
{
	if (typeof(height)=="undefined")
		height = 500;
	if (typeof(scrollbars)=="undefined")
	{	
		width = 760;
		scrollbars = false;
	}
	if (scrollbars)
		width = 780;
		
	var url = "product_popups\\" + page + ".htm";
	spawn ("products", url, width, height, scrollbars);
		
}

function redirectPage(page)
{
	window.location = page;
}
