function openWindow(url)
{
window.open(url,"newWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=500,height=600,screenX=40,screenY=40");
}

function openWindow1(url)
{
window.open(url,"newWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=440,height=570,screenX=40,screenY=40");
}

function openBannerWindow(url)
{

window.open(url,"newWindow","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=780,height=570,screenX=40,screenY=40");

}

function openNewsWindow(url,name)
{
		var newWindow = window.open(url,name,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=500,height=600,left=300,top=10");	
	
	newWindow.focus();
}

function openChartWindow(url)
{

window.open(url,"newWindow","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=640,height=680,screenX=40,screenY=20");

}