// JavaScript Document
function openDir(form)
	{ 
	var newIndex = form.fieldname.selectedIndex; 
	if ( newIndex == 0 )
		alert("---Locate a model---" ); 
		else 
			{ 
			cururl = form.fieldname.options[newIndex].value; 
			window.location.assign(cururl); 
			} 
}

function change(id, newClass)
	{
	identity = document.getElementById(id);
	identity.className = newClass;
	}
