<!--
var WM_acceptsCookies = false;
if(document.cookie == '') {
    document.cookie = 'WM_acceptsCookies=yes'; // Try to set a cookie.
    if(document.cookie.indexOf('WM_acceptsCookies=yes') != -1) {
   
	WM_acceptsCookies = true; 
    }// If it succeeds, set variable
} else { // there was already a cookie
  WM_acceptsCookies = true;
}
// ----------------------------
function WM_setCookie (name, value, hours, path, domain, secure) {
// ----------------------------
    if (WM_acceptsCookies) {
	var not_NN2 = (navigator && navigator.appName 
		       && (navigator.appName == 'Netscape') 
		       && navigator.appVersion 
		       && (parseInt(navigator.appVersion) == 2))?false:true;

	if(hours && not_NN2) { // NN2 cannot handle Dates, so skip this part
	    if ( (typeof(hours) == 'string') && Date.parse(hours) ) { // already a Date string
		var numHours = hours;
	    } else if (typeof(hours) == 'number') { // calculate Date from number of hours
		var numHours = (new Date((new Date()).getTime() + hours*3600000)).toGMTString();
	    }
	}
	document.cookie = name + '=' + escape(value) + ((numHours)?(';expires=' + numHours):'') + ((path)?';path=' + path:'') + ((domain)?';domain=' + domain:'') + ((secure && (secure == true))?'; secure':''); // Set the cookie, adding any parameters that were specified.
    }
}
// ----------------------------
function WM_readCookie(name) {
// ----------------------------
    if(document.cookie == '') {
	return false; 
    } else { // there is a cookie
	var firstChar, lastChar;
	var theBigCookie = document.cookie;
	firstChar = theBigCookie.indexOf(name);	// find the start of 'name'
	var NN2Hack = firstChar + name.length;
	if((firstChar != -1) && (theBigCookie.charAt(NN2Hack) == '=')) { // if you found the cookie
	    firstChar += name.length + 1; // skip 'name' and '='
	    lastChar = theBigCookie.indexOf(';', firstChar); // Find the end of the value string (i.e. the next ';').
	    if(lastChar == -1) lastChar = theBigCookie.length;
	    return unescape(theBigCookie.substring(firstChar, lastChar));
	} else { // If there was no cookie of that name, return false.
	    return false;
	}
    }	
}
// ----------------------------
function WM_killCookie(name, path, domain) {
// ----------------------------
  var theValue = WM_readCookie(name); // We need the value to kill the cookie
  if(theValue) {
      document.cookie = name + '=' + theValue + '; expires=Fri, 13-Apr-1970 00:00:00 GMT' + ((path)?';path=' + path:'') + ((domain)?';domain=' + domain:''); // set an already-expired cookie
  }
}
// ----------------------------
function showWarningPage(){
// ----------------------------

document.write("<head>");
document.write ("<title>Preview MedLink Neurology</title>");
document.write ("</head>");
document.write ("<body topmargin=0 leftmargin=0 style=font-family:arial;font-size:9pt>");
document.write ("<table cellpadding=0 cellspacing=0 width=100% >");
document.write ("<tr >");
document.write ("<td width=100% background=../../SiteHeader/Images/right_corner_tile.gif>");
document.write ("<A href=/medlinkcontent.asp?vmode=y><IMG src=../../SiteHeader/Images/registration_banner.gif border=0></a></td>");
document.write ("</tr>");
document.write ("</table>");
document.write ("<DIV STYLE=padding-left:10px>");
document.write ("<TABLE WIDTH=605>");
document.write ("<TR>");
document.write ("<TD style=font-family:arial;font-size:9pt>");
document.write ("<DIV style=PADDING-LEFT: 15px; FONT-SIZE: 10pt; PADDING-TOP: 15px; FONT-FAMILY: Arial>");
document.write ("<B>");
document.write ("<SPAN STYLE=font-size:15pt>Cookies must be allowed to access MedLink.com</SPAN>");
document.write ("</B><BR><BR>");
document.write ("<SPAN style=COLOR: #000033>Your browser is currently set to block cookies. Your browser must allow cookies before you can access MedLink.com.<BR><BR>Cookies are small text files stored on your computer.  We care about your privacy and no personally identifiable information is used in our cookies.  To learn how to allow cookies, see the help section of your web browser. After enabling cookies, click here to access <A HREF=/medlinkcontent.asp style=text-decoration:underline;color:#336699>MedLink.com</A>.");
document.write ("<BR><BR>");
document.write ("<SPAN STYLE=font-size:13px;font-family:arial>We are here to help if you need us:</SPAN><BR><BR>");
document.write ("<SPAN STYLE=font-size:13px;font-family:arial>");
document.write ("<TABLE>");
document.write ("<TR>");
document.write ("<TD COLSPAN=2 style=font-family:arial;font-size:9pt><B>MedLink Corporation</B><BR>10393 San Diego Mission Rd, Suite 120<BR>San Diego, CA 92108-2134</TD>");
document.write ("</TR>");
document.write ("<TR >");
document.write ("<TD STYLE=padding-top:10px;font-family:arial;font-size:9pt VALIGN=top><B>Phone:</B></TD><TD STYLE=padding-top:10px;font-size:9pt>619-640-4660<BR>800-452-2400 (toll free in U.S. and Canada only)</TD>");
document.write ("</TR>");
document.write ("<TR>");
document.write ("<TD style=font-family:arial;font-size:9pt><B>Fax:</B></TD><TD style=font-family:arial;font-size:9pt>619-640-4664</TD>");
document.write ("</TR>");
document.write ("<TR>");
document.write ("<TD STYLE=padding-top:10px;font-family:arial;font-size:9pt;><B>Support:</B></TD>");
document.write ("<TD STYLE=padding-top:10px;font-family:arial;font-size:9pt;><A HREF=mailto:service@medlink.com style=text-decoration:underline;color:#336699>service@medlink.com</A></TD>");
document.write ("</TR>");
document.write ("</TABLE>");
document.write ("</DIV>");
document.write ("</TD>");
document.write ("</TR>");
document.write ("</TABLE>");
document.write ("</DIV>");
document.write ("</body>");
document.write ("</html>"); 
}

// -->


 
