function openwindows(pUrl,pName,pScroll,pWidth,pHeight,pLeft,pTop)
{
	newwin = window.open(pUrl,pName,"width="+pWidth+", height="+pHeight+", left="+pLeft+", top="+pTop+", scrollbars="+pScroll+", toolbars=no, status=no");
	newwin.focus();
}
function myTrim(str){
	str = str.replace(/\s/g,"");
	return str;
}
function isnum(NUM){
	for(var i=0;i<NUM.length;i++)
	{
		achar = NUM.substring(i,i+1);
		if( achar < "0" || achar > "9" )
			return false;
	}
	return true;
}

function spampop(url,name,width,height,scrollbars,resizable) {
	msgWindow=window.open(url,name,'scrollbars='+scrollbars+',resizable='+resizable+',width='+width+',height='+height);
	msgWindow.focus();
}

function sitemap(url,name,width,height,scrollbars,resizable) {
	SiteMapWindow=window.open(url,name,'scrollbars='+scrollbars+',resizable='+resizable+',width='+width+',height='+height);
	SiteMapWindow.focus();
}

/**/
