<!--

function menu_goto( menuform )
{
    var baseurl = "http://discount-prescription.com/" ;
    selecteditem = menuform.newurl.selectedIndex ;
    newurl = menuform.newurl.options[ selecteditem ].value ;
    if (newurl.length != 0) {
      location.href = baseurl + newurl ;
    }
}

function popUp(url) 
	{
	sealWin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=640,height=620');
	self.name = "mainWin"; 
	}
	
function winopen(url, name, w, h) {
    var l = (screen.availWidth-10 - w) / 2;
    var t = (screen.availHeight-20 - h) / 2;

    var features = "width="+w+",height="+h+",left="+l+",top="+t;
    features += ",screenX="+l+",screenY="+t;
    features += ",scrollbars=1,resizable=1,location=0";
    features += ",menubar=0,toolbar=0,status=0";

    var nw = window.open(url, name, features);
    if (nw) nw.focus();
    return nw;
}

function writeSimpleEmailLink(prefix, domain)
{
	document.write("<a href=\"mailto: " + prefix + "@" + domain + "\">" + prefix + "@" + domain + "</a>");
}

//-->