Code: Select all
<body onclick="load('<%=pURL%>');" bottommargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0" topmargin="0">
<table width="288" border="0" cellspacing="0" cellpadding="0" onMouseOver="this.style.cursor='hand';" onMouseOut="this.style.cursor='';">
Code: Select all
<script>
function load(val){
if(val.length!=0) {
var strURL = new String(val);
val=strURL.replace(/#/g,"'");
if(val.substring(0, 10)=='javascript'){
strURL=val;
val=strURL.replace(/javascript.popup/g,"window.open");
eval(val);
//eval('window.open'+val.substring(16));
}else{
window.parent.parent.parent.navigate(val);
}
}
}
</script>