// JavaScript Document
function winOpen()
{
	window.open('disclaimer.html','', 'dependent,scrollbars=no,resizable=no,width=500,height=330,left=150,top=150')
}
function winOpenAll(url)
{
	window.open(url,'', 'dependent,scrollbars=yes,resizable=no,width=700,height=350,left=50,top=50')
}
	function winOpenImage(url)
{
	window.open(url,'', 'dependent,scrollbars=no,resizable=no,width=360,height=270,left=200,top=200')
}
function hide()
{
	login_table.style.visibility='hidden'
}
function show()
{
	login_table.style.visibility='visible'
}
function valid()
{
		//alert("Hello")
		if(document.frm_Login.txt_Login.value=="")
		{
			alert("You Must Enter User Name")
			document.frm_Login.txt_Login.focus()
			return false
		}
		if(document.frm_Login.txt_Password.value=="")
		{
			alert("You Must Enter Password")
			document.frm_Login.txt_Password.focus()
			return false
		}
}
