﻿// JScript File
var server = window.location.hostname
var start = ""
//if(server.indexOf("staging.") > -1){
//    start = "http://staging.wyethallbrands.com"
//} else if(server.indexOf("stage.") > -1){
//    start = "http://staging.wyethallbrands.com"
//} 

//else 

if(server.indexOf("www.") > -1){
    start = "http://www.wyethallbrands.com"
}
else start = "http://www.wyethallbrands.com"


function SpecialOffers(){
    
    window.open(start + "/special_offers.aspx", "SpecialOffers", "resizable=1,scrollbars=1,status=1s,toolbar=0,menubar=0,location=0,width=650,height=500");
}
function OpenCoupon(url){
    window.open(start + url, "OfferWindow", "resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,location=yes,width=650,height=500");
}

//This function will return the code to create the link on the page.
function CreateCoupon(tmp){ // tmp IS NOT CASE SENSITIVE
    var str
    switch(tmp.toLowerCase())
    {
    case "homepage":
      str = "";
      break;
    default:
      str = "&nbsp;";
    }
    document.write(str);
}