<!--

	function rollOver (obj) {
		var new_img = obj.src.substring(0,obj.src.length-4);
		obj.src = new_img+'_on.gif';
	}

	function rollOut (obj) {
		var new_img = obj.src.substring(0,obj.src.length-7);
		obj.src = new_img+'.gif';
	}

	function write_qt(width,height,src) {
		height += 15;
		var code="<object classid=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab\" width=\""+width+"\" height=\""+height+"\"><param name=\"src\" value=\""+src+"\" /><param name=\"autoplay\" value=\"true\" /><param name=\"controller\" value=\"true\" /><param name=\"pluginspage\" value=\"http://www.apple.com/quicktime/download/indext.html\" /><param name=\"type\" value=\"video/quicktime\" /><embed src=\""+src+"\" width=\""+width+"\" height=\""+height+"\" autoplay=\"true\" controller=\"true\" border=\"0\" pluginspage=\"http://www.apple.com/quicktime/download/indext.html\" type=\"video/quicktime\"></embed></object>";
		document.write(code);
	}

	function popMobile(c) {
		//window.confirm(c);
		window.open('mobile_'+c+'.php','_blank','width=500,height=420,scrollbars=yes');
		return false;
	}

	function externalLinks() {
		if (!document.getElementsByTagName) return;
		var anchors = document.getElementsByTagName("a");
		for (var i=0; i<anchors.length; i++) {
			var anchor = anchors[i];
			if (anchor.getAttribute("href") &&
			anchor.getAttribute("rel") == "external")
				anchor.target = "_blank";
		}
	}
	window.onload = externalLinks;
	
//-->