function OpenPopUpWindow(url) {
params = 'width=' + Math.round(screen.width * .90);
params += ', height=' + screen.height;
params += ', top=0, left=' + Math.round(screen.width * .05);
params += ', fullscreen=no';
params += ', scrollbars=yes';
var newwin = window.open(url, 'windowname', params);
if (window.focus) { newwin.focus() }
if (typeof this.stopPropagation != 'undefined') {
this.stopPropagation();
}
return false;
}
params = 'width=' + Math.round(screen.width * .90);
params += ', height=' + screen.height;
params += ', top=0, left=' + Math.round(screen.width * .05);
params += ', fullscreen=no';
params += ', scrollbars=yes';
var newwin = window.open(url, 'windowname', params);
if (window.focus) { newwin.focus() }
if (typeof this.stopPropagation != 'undefined') {
this.stopPropagation();
}
return false;
}
Comments
Post a Comment