function clearDefaultandCSS(el) {
	if (el.defaultValue==el.value) el.value = ""
	// If Dynamic Style is supported, clear the style
	if (el.style) el.style.cssText = ""
}

function openDir(form) { 

	var newIndex = form.store.selectedIndex; 

	url = form.store.options[newIndex].value; 

	window.location.assign(url); 


} 