<!--
//  <a href="javascript:newNewsWindow('url')"></a>

function newWindow(myURL,myName){
	winStats = 'toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes'
	if (navigator.appName.indexOf("Microsoft") >= 0){winStats += ',left=20,top=20,width=535,height=500';}
	else{winStats += ',screenX=20,screenY=20,width=535,height=500';}

	//thisURL = newsWindow.arguments[0];
	adWindow = window.open(myURL,myName,winStats);
	adWindow.focus();
}

function newWindowExternal(myURL, myName){
	winStats = 'toolbar=yes,location=yes,directories=yes,menubar=yes,scrollbars=yes,resizable=yes'
	if (navigator.appName.indexOf("Microsoft") >= 0){
		w = 640;
		h = 480;
		winStats += ',left=20,top=20,width=' + w + ',height=' + h;
	}
	else{
		if (window.width==0){
			w = 640
		}else{
			w = window.width - 40
		}
		if (window.height==0){
			h = 480
		}else{
			h = window.height - 40
		}
		winStats += ',screenX=20,screenY=20,width=' + w + ',height=' + h;
	}

	//thisURL = newsWindow.arguments[0];
	adWindow = window.open(myURL,"external",winStats);
	adWindow.focus();
}
//-->
