	function show(objet){		
	if (document.layers){			
	if (document.layers[objet]!=null) 
	document.layers[objet].display = 'block';		
	}				
	else if (document.all){			
	document.all[objet].style.display = 'block';		
	}		
	if (document.getElementById(objet))		
	{			
	if (document.getElementById(objet)!=null) 
	document.getElementById(objet).style.display = 'block';		
	}		
	else if (document.all){			
	document.getElementById(objet).display = 'block';		
	}			
	}		
	function close(objet){		
	if (document.layers){			
	if (document.layers[objet]!= null) 
	document.layers[objet].display = 'none';		
	}		
	else if (document.all) {			
	document.all[objet].style.display = 'none';		
	}				
	if (document.getElementById(objet))		
	{			
	if (document.getElementById(objet) != null) 
	document.getElementById(objet).style.display = 'none';		
	}		
	else if (document.all)		
	{			
	document.getElementById(objet).display = 'none';		
	}	
	}
	
	function openWindow(url) {
		email = window.open(url,"eMail",'left=20,top=20,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,width=485,height=440');
		email.focus();
	}
	
	function submitIt(productform) {
	if (typeof productform.eop_Color != 'undefined') {
		colorChoice = productform.eop_Color.selectedIndex
		if (productform.eop_Color.options[colorChoice].value == "Color???^00.00^0") {
		alert("Por favor, selecione un color")
		productform.eop_Color.focus()
		return false
		}
	}
	if (typeof productform.eop_Talla != 'undefined') {	
		tallaChoice = productform.eop_Talla.selectedIndex
		if (productform.eop_Talla.options[tallaChoice].value == "Talla???^00.00^0") {
		alert("Por favor, selecione una talla")
		productform.eop_Talla.focus()
		return false
		}
	}
	if (typeof productform.eop_Talla != 'undefined') {	
		medidaChoice = productform.eop_Talla.selectedIndex
		if (productform.eop_Talla.options[medidaChoice].value == "Medidas???^00.00^0") {
		alert("Por favor, selecione las medidas")
		productform.eop_Talla.focus()
		return false
		}		
	}	
	return true
	}
	
	
