
function popup(url)
{
	newwindow=window.open(url,'name','height=440,width=470,scrollbars=0');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popupMap(url)
{
	newwindow=window.open(url,'name','height=400,width=680,scrollbars=0');
	if (window.focus) {newwindow.focus()}
	return false;
}


