function openChild(file, window, width, height) {
	childWindow = open(BASEURL + file, window, 'resizable=1, scrollbars=1, top=100, left=200, width=' + width + ', height=' + height);
	if (childWindow.opener == null) childWindow.opener = self;
}

function invi(id)
{
	document.getElementById(id).className = 'invi';
}

function visi(id)
{
	document.getElementById(id).className = 'visi';
}

function validar(fc,fs) 
{
	var error_message = "";
	if (fc!='0' && document.submit.opcionColor.value =="") error_message += "- color \n";
	if (fz!='0' && document.submit.opcionSize.value =="") error_message += "- size \n";
	if ((document.submit.cantidad.value == "")||(document.submit.cantidad.value == "0")) error_message += "- cantidad \n";


	if(error_message) 
	{
		alert("Por favor llene los siguientes campos:\n" + error_message);
		return false; 
	}
	else return true;
}
