// JavaScript Document

$(document).ready(
 function()
 {
  init();
});

function moreprice()
{
	
	if(islogin())
	{
		window.location.href="/module/gov/areapricefile.html?id=001";	
	}
}
function getAreaPrice(city,date,title)
{
	if(islogin())
	{
		window.location.href="/module/gov/areaprice.html?addr="+encode(city)+"&time="+date+"&title="+encode(title);	
	}
}

function changePara(txt){
    window.location.href="/module/gov/areapricemap.html?m="+encode(txt);
}
function islogin(){
	if(!currUser){
		goTO(window.location.href);
    	return false;
	}
	return true;
}
