function OpenWindow(URL,WIDTH)
{
	popUpWindow = window.open(URL,"InfoSmallWindow",'height=500px,width=' + WIDTH + 'px,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,center=yes,resizable=yes,left=10,top=50 ');
	//commented this code b/c getting runtime error in some browser. Now all the popup
	//window will have setfocus on their on load event.
    //popUpWindow.focus();
}

function OpenSmallWindow(URL,WIDTH,HEIGHT)
{
	popUpWindow = window.open(URL,"InfoWindow",'height='+ HEIGHT+'px,width=' + WIDTH + 'px,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,center=yes,resizable=no,left=10,top=170 ');
	//commented this code b/c getting runtime error in some browser. Now all the popup
	//window will have setfocus on their on load event.
    //popUpWindow.focus();
}