<!--
//fixed size window opener
function newWindow(file,window) {
 msgWindow=open(file,window,'resizable=yes,width=350,height=450,left=0,top=0,scrollbars=yes');
 if (msgWindow.opener == null) msgWindow.opener = self;
}

//open window in any size
function MM_openBrWindow(theURL,winName,features) { //v2.0
 window.open(theURL,winName,features);
}
-->