// JavaScript Document
function OpenWin(myurl){
window.open(myurl,'','status=yes,scrollbars=yes,resizable=yes,width=400,height=250,top=297,left=565');
}
function openWinP(myurl,w,h){
window.open(myurl,'','status=no,scrollbars=no,resizable=no,width=' + w + ' ,height= ' + h + ' ,top=297,left=565');
}