// General Functions Library

function ResetForm(formPosition)
{
	var theForm;
	
	if(formPosition != null && formPosition != 0)
		theForm =document.forms[formPosition];
	else
		theForm = document.forms[0];	
	
	for(i=0; i< theForm.elements.length; i++)
	{
		if(theForm.elements[i].type == "text" || theForm.elements[i].type == "textarea")
			theForm.elements[i].value = "";
		else if (theForm.elements[i].type == "select-one")
			theForm.elements[i].selectedIndex = 0;
	}	
}

function PopUpWindow(w, h, id)
{
	window.open("PrinterFriendly.php?id=" + id,"PrinterWindow","status = 1, height = " + h + ", width = " + w + ", scrollbars=1, resizable=0, status = 1, menubar = 1");
}