
	if(document.all && !document.getElementById) {
		document.getElementById = function(id) {
		return document.all[id];
		}
	}
	function rollin(link) {
   		document.getElementById('droptext').innerHTML=link;
	}
	function rollout() {
		document.getElementById('droptext').innerHTML='Browse the pages of our ad. Rollover the items on the page to view detailed information here.';
	}
	function selectPage() {
	    if (document.forms[0].dropmenu) {
	        try {
	            document.forms[0].dropmenu.value = pageName;
	        } catch (e) {

	        }
	    }
	}

	var oldOnload = window.onload;
	window.onload = function() {
	    if (oldOnload) oldOnload();
	    selectPage();
	}
	
		
