function NewWin(url,w,h) {
	if (w=='') w='800';
	if (h=='') h='600';
	if (url!='') {
		window.open(url, '', 'toolbar=0, location=0, menubar=0, scrollbars=0, resizable=0, width='+w+', height='+h+'');
		return false;
	}
}
function NewWinMap(url,w,h) {
	if (w=='') w='800';
	if (h=='') h='600';
	if (url!='') {
		window.open(url, '', 'toolbar=0, location=0, menubar=0, scrollbars=0, resizable=1, width='+w+', height='+h+'');
		return false;
	}
}
