var pixelName;
//var isRevolutionary=0;
function openPopupWindow (URL, p_width, p_height) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+p_width+",height="+p_height+",left = 150,top = 200');");
}

function openPopupWindowWithScroll (URL, p_width, p_height) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width="+p_width+",height="+p_height+",left = 75,top = 0');");
}

//use to swap NextAction Pixel to a blank image
function swapNextActionTag(pixelName) {
var blankImg = "https://a248.e.akamai.net/7/248/497/0001/www.proflowers.com/images/blank.gif";

//var blankImg = "https://a248.e.akamai.net/7/248/497/0001/www.proflowers.com/images/ProflowersLogoNavWPH_OP.gif";
obj = document.getElementById(pixelName+'__genericTrackingPixelImg');
if(typeof(obj) != "undefined" && obj != null)
{
obj.src = blankImg;
}
}