function opWindow(url, width, height) {
 var opWindow=window.open( url, "", "width=" + width + ",height=" + height + ",toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no" );
 opWindow.focus();
}

function opWindowS(url, width, height) {
 var opWindowS=window.open( url, "", "width=" + width + ",height=" + height + ",toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no" );
 opWindowS.focus();
}

