
// Coupon Pop-Up
var couponX = (screen.width/2)-250;
var couponY = (screen.height/2)-217;
var pos = "left="+couponX+",top="+couponY;

function coupon(){
couponWindow = window.open("print_coupon.htm","ValueDry","width=500,height=434,"+pos);
}

// Windows Video Pop-Up
var winX = (screen.width/2)-250;
var winY = (screen.height/2)-217;
var pos = "left="+winX+",top="+winY;

function win(){
winWindow = window.open("basement_wm.htm","ValueDry","width=372,height=400,"+pos);
}

// QuickTime Video Pop-Up
var qtX = (screen.width/2)-250;
var qtY = (screen.height/2)-217;
var pos = "left="+qtX+",top="+qtY;

function qt(){
qtWindow = window.open("basement_qt.htm","ValueDry","width=360,height=306,"+pos);
}

// Video Testimonial Pop-Up
var doPopUpX = (screen.width/2)-275;
var doPopUpY = (screen.height/2)-200;
var pos = "left="+doPopUpX+",top="+doPopUpY;

function doPopUp(Linkvar){
doPopUpWindow = window.open(Linkvar,"Videos","width=550,height=400,"+pos);
}

