/*CITY COUNCIL*/
function openContact(url,newW,newH)
{
var newW = 450;
var newH = 620;
var menubar = "no";
var titlebar = "no";
var left = (screen.width-newW)/2;
var top = (screen.height-newH)/2;
var url=("../pop_windows/contact.php");
var contact = window.open(url, menubar, titlebar, 'name', 'width='+newW+',height='+newH+',left='+left+',top='+top);
contact.resizeTo(newW, newH);
contact.moveTo(left, top);
contact.focus();
return true;
}

