//#######################################################
// This file contains common javascript functions
//#######################################################


// popup new window
// add the onclick to the <a> tag
// onclick="windowPopup('http://www.yoursite.com','anyname','width=800,height=600,location=no,scrollbars=yes,menubars=yes,toolbars=yes,resizable=yes')
function windowPopup(url,name,properties)
{
	window.open(url, name, properties);
}

