function openSesame(){

	var doc = document.forms[0];
	var strID = doc.hParent.value;
	var strID2 = doc.hFinal.value;

	window.open('select_category.php?id=' + strID + '&id2=' + strID2,'winCat','width=550,height=600,toolbar=no,scroll=yes,menubar=no');

}

function openSesame2(){

	var doc = document.forms[0];
	var strID = doc.hParent.value;
	var strID2 = doc.hFinal.value;

	window.open('select_product.php?id=' + strID + '&id2=' + strID2,'winCat','width=550,height=600,toolbar=no,scroll=yes,menubar=no');

}

function openSesame3(strURL){

	var doc = document.forms[0];
	var strID = doc.hParent.value;
	var strID2 = doc.hFinal.value;

	window.open(strURL + '?id=' + strID + '&id2=' + strID2,'winCat','width=550,height=600,toolbar=no,scroll=yes,menubar=no');

}


function ChangeType()
{
	document.forms[0].action = 'add_event.php';
	document.forms[0].submit();
	//return true;
}

function PlaceFocus() 
{
	if (document.forms.length > 0)
	{
		var field = document.forms[0];
		for (i = 0; i < field.length; i++)
		{
			if ((field.elements[i].type == "text") || 
					(field.elements[i].type == "textarea") || 
					(field.elements[i].type.toString().charAt(0) == "s"))
			{ 
				document.forms[0].elements[i].focus();
				break;
      }
		}
  }
}