// This breaks the site out of frames if loaded in someone elses site
if (self.location.href != top.location.href) {
top.location.href = self.location.href;
}


// This function is used to launch popup windows
var popOff = null;
function launchURL (url,w,h,scroll,resize,title,status)
{
if (scroll == "1") scroll = "yes"; else scroll = "no";
if (resize == "1") resize = "yes"; else resize = "no";
features = "height="+h+",width="+w+",scrollbars="+scroll+",resizable="+resize+",toolbar=0,location=0";
if (status == "1") features = features + ",status";
popOff = window.open (url, title, features);
if (!popOff.opener)
{
        popOff.opener = self;
}

        popOff.focus();
}