function view_other_citys(obj){

obj_pos=getAbsolutePos(obj);

var div0=document.getElementById('all_cities');

if (div0.style.display=="none")
{
obj_pos.x=obj_pos.x-150;
div0.style.left=obj_pos.x+'px'; 
obj_pos.y=obj_pos.y+15;
div0.style.top=obj_pos.y+'px'; 
div0.style.width='150px'; 
div0.style.display="block";
}else hide_other_citys();


}

function view_other_citys1(obj, g){
if(!obj)
{
	obj = document.getElementById('templink');
}

obj_pos=getAbsolutePos(obj);

var div0=document.getElementById('all_cities');

if (g==1)
{
	/*
obj_pos.x=obj_pos.x-67;
div0.style.left=obj_pos.x+'px'; 
obj_pos.y=obj_pos.y+15;
div0.style.top=obj_pos.y+'px'; 
div0.style.width='150px'; */

div0.style.display="block";
}else hide_other_citys();


}

function hide_other_citys(){
document.getElementById('all_cities').style.display="none";
}
