


function openWin(theURL,winName,features) { 

  window.open(theURL,winName,features);

}



function myOpen(url) {

width = 1000;

height = 700;



try {

	height = screen.height - 68;

	width = screen.width - 10;

} catch (e) {

}



openWin(url,'','scrollbars=no,width=' + width + ',height=' + height + ',left=0,top=0,resizable=yes');



}




