function autoGoTo(formName, selName)
{
	var URL = eval("document." + formName + "." + selName + ".options[document." + formName + "." + selName + ".selectedIndex].value");
	if (URL == "back")
	{
		parent.head.location.href = "head.php";
	}
	else if (URL != "vide")
	{
		parent.head.location.href = URL;
	}
}

function autoGoToImg(formName, selName)
{
	var URL = eval("document." + formName + "." + selName + ".options[document." + formName + "." + selName + ".selectedIndex].value");
	var URLL = "head.php?tosee=" + URL
	if (URL != "vide")
	{
		parent.head.location.href = URLL;
	}
}

function autoPopUp(formName, selName)
{
	var URL = eval("document." + formName + "." + selName + ".options[document." + formName + "." + selName + ".selectedIndex].value");
	if (URL == "back")
	{
		parent.head.location.href = "head.php";
	}
	else if (URL != "vide")
	{
		window.open(URL,"dummy","");
	}
}