function PopUp(rURL, height, width) {
	var xLoc;
	xLoc = (screen.availWidth/2) - (width/2);
	var yLoc;
	yLoc = (screen.availHeight/2) - (height/2);
    window.open(rURL,'catalogPopUp','height=' + height + ',left=' + xLoc + ',scrollbars=1,resizable=1,top=' + yLoc + ',width=' + width);
}

function mailTo(mailTo)
{
    var agt = navigator.userAgent.toLowerCase();

    if (agt.indexOf("chrome") > 0)
    {
        CloseMe();
        self.location = mailTo;
    }
    else
    {
        window.location = mailTo;
        CloseMe();
    }

}

function CloseMe()
{
    self.opener = this;
    self.close();
}


