// This function changes the link color to red on hover
	function mousedOver(thisID){
		document.all(thisID).style.color='red';
	}

// This function changes the link color back to white on mouse out
	function mousedOut(thisID){
		document.all(thisID).style.color='white';
	}

// This function does the same with differnt link color
	function mousedOut2(thisID){
		document.all(thisID).style.color='#3399FF';
	}

	function goPage(){
		goVar = new String(document.all.selType.value);

		document.location.href = "http://www.maysphoto.com/main/" + goVar + ".htm";
		
		return false;
	}

	function goPage2Temp(linkID){
		var goVar = linkID;
		strGoVar = new String(goVar);
		
		document.location.href = "http://www.maysphoto.com/main/" + strGoVar + ".htm";
		
		return false;
	}

	function goPage2(linkID){
		goVar = new String(linkID);
		alert("Under construction. Check back for updates and check our links section to visit manufacturers' websites.");
		
		//document.location.href = "http://www.maysphoto.com/main/" + goVar + ".htm";
		
		return false;
	}
	
	function goPage3(linkID){
		sFeatures = new String("height=400, width=550, toolbar=yes, location=yes, menubar=yes, resizable=yes, scrollbars=yes, status=yes, titlebar=yes, top=10, left=10");
		sID = new String(linkID);

		window.open(sID, null, sFeatures);

		return false;
	}

	function helpMe(linkID){
		sFeatures = new String("height=300, width=300, location=no, menubar=no, resizable=no, scrollbars=no, status=no, titlebar=no, top=10, left=10");
		sID = new String("http://www.maysphoto.com/main/help/" + linkID + ".htm");

		window.open(sID, null, sFeatures);
		
		return false;
	}

	function closeWin(){
		window.close();	
		return false;
	}