// JavaScript Document
function check_val()
{
	if(document.getElementById('city').value=="0")
		document.getElementById('city').selectedIndex=document.getElementById('city').selectedIndex+1;
}
function form_submit()
{
	if(document.login_form.username.value=="")
	{
		alert("Give Username");	
		return false;
	}
	if(document.login_form.pass.value=="")
	{
		alert("Give Password");	
		return false;
	}
	document.login_form.submit();
}
function search_submit()
{
	if(document.search_form.transaction.value=="")
	{
		alert("Give Transaction");	
		return false;
	}
	if(document.search_form.property.value=="")
	{
		alert("Give Property");	
		return false;
	}
	if(document.search_form.city.value=="")
	{
		alert("Give City");	
		return false;
	}
	document.search_form.submit();
}
function win(url,w,h)
{
	window.open(url,'win','width='+w+',height='+h+',scrollbars=1,resizable=0,top=150,left=150');	
}
function win_loc(url)
{
	window.location=url;	
}