function winOpen(winName,url,W,H,e){

var popwin=window.open(url,winName,'location=yes,directories=yes,status=no,menubar=no,toolbar=no,resizable=yes,width='+W+',height='+H+'');

if(e.preventDefault){
e.preventDefault();
e.stopPropagation();
}
e.returnValue=false;
e.cancelBubble=true;

popwin.focus();
popwin.document.close()

}


