
function Reset(Elem)
{
	var Element=document.getElementById(Elem);
	Element.value='';				
}
function FogotPassword()
{
	var strUrl = "ForgotPassword.aspx";
	window.open(strUrl,'','toolbar=no,menubar=no,width=300,height=200');

}

function change_type(id, arr)
{
	for(var i=0;i<arr.length;i++)
	{
		var Element2=document.getElementById(arr[i]);
		Element2.style.display='none';
	}
	var Element=document.getElementById(id);
	Element.style.display='block';
}
function OpenPreview(str)
		{
		theFeats = "height=500,width=600,location=no,menubar=yes,resizable=yes,scrollbars=yes,status=no,toolbar=no";
		window.open(str, "Print", theFeats);
		}
		
function OpenPrint(str)
		{
		theFeats = "height=500,width=600,location=no,menubar=yes,resizable=yes,scrollbars=yes,status=no,toolbar=no";
		window.open(str, "Print", theFeats);
		}		