
/*********************************************************************************/
/*			Javascript for conatining generic functions 						 */
/*********************************************************************************/

var ns=0;
var ie=0;

if(document.getElementById && ! document.all) ns=1;
if(document.all) ie=1;
	
/*
For pop up a window
This function will take one parameter, the URL.
The window should always pop open a new window even if another window is opened.
*/

function popWindow(URL)
{
	var w = window.open(URL,"","scrollbars=1,resizable=1,width=780px,height=550px");
	w.focus();
	return false;
}

function OpenNewsletter(NewsletterPage)
{
	var w = window.open(NewsletterPage,"","scrollbars=1,resizable=1,width=780px,height=550px");
	w.focus();
	return false;
}

function OpenForum(ForumPage)
{
	var w = window.open(ForumPage,"","scrollbars=1,resizable=1,width=780px,height=550px");
	w.focus();
	return false;
}
