<!--

var loc;
//var ie = 0;
//ie=(navigator.appName == 'Microsoft Internet Explorer') ?1:0


function newWindow(url,id,width,height)
{
if (loc!=id)
{
	zoom=window.open(url, id, 'width = '+width+' , height = '+height+',resizable=0,scrollbars=0,menubar=0,status=0, left='+Math.max(0,(screen.width-width)/2)+', top='+Math.max(0,(screen.height-height)/2))
	loc=id;
}
else 
{
	
	if(document.all) zoom.close();
		else if(zoom.document) zoom.close();
	zoom=window.open(url, id, 'width = '+width+' , height = '+height+',resizable=0,scrollbars=0,menubar=0,status=0, left='+Math.max(0,(screen.width-width)/2)+', top='+Math.max(0,(screen.height-height)/2))
}
}
//-->
