<!--
	function sendLink (txtURL, txtSite) {
	
		//alert (txtURL + txtSite);
		var msg = "";
		//txtURL = "http://" + txtURL;
		
		msg = " W  A  R  N  I  N  G!\n";
		msg = msg + "You are about to leave the web site of Comic-Con International for the web site of: \n";
		msg = msg + txtSite.toUpperCase() + ". \n\n";
		msg = msg + "The link you have selected will take you to the third party web site listed above. ";
		msg = msg + "The web site is not a Comic-Con web site and, therefore, we have no control over content or links that may be featured on that site.\n\n";
		msg = msg + "If you would like to continue, please press OK. If you would rather stick around here, click cancel.\n\n";
		msg = msg + "Thanks,\nComic-Con International";
		if (confirm(msg)) {
			window.open(txtURL, '_blank');
			//location.href = txtURL;
		}
		
	}
//-->

