function openNamedWindow( name, url, width, height, left, top, scroll){
var resize='yes';
var scrollbar='auto';
if( openNamedWindow.arguments.length > 4 )
{
	resize='no';
}
else
{
	left='152';
	top='10';
}

if( openNamedWindow.arguments.length > 6 )
	scrollbar=scroll;

Window3=window.open(url,name,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scrollbar+',resizable='+resize+',width='+width+',height='+height+',top='+top+',left='+left+'');
Window3.focus();
}

function openWindow2(url, w, h){
window.name = "main";
Window2=window.open(url,'Window2','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,width='+w+',height='+h+',top=10,left=152'); 
Window2.focus();
}

function openWindow3(url, w, h){
window.name = "main";
Window3=window.open(url,'Window3','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,width='+w+',height='+h+',top=10,left=152'); 
Window3.focus();
}
