PopItUp window maker
0
This function pops open a new window - it bypasses security and most pop-up stoppers in IE and FF. This is used by the CreateUtilityLinks snippet.
function popItUp(url,name) {
var newwindow = '';
var date = new Date();
var timestamp = Date.parse(date);
newwindow=window.open(url,name + timestamp,'location=' + url + ',height=500,width=400,resize=true,resizable=yes,scrollbars=yes');
if (window.focus) {newwindow.focus()}
return false;
}






There are currently no comments for this snippet.