// This contains a set of utility programs to be used accross the site.
// -------------------------------------------------------------------
// To include in your file put the following line in :
// <SCRIPT SRC="/app/util/util.js" LANGUAGE="JavaScript"></SCRIPT>
// See util.htm for details.
var win= null;
function NewWindow(mypage,myname,w,h,scroll){
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar=no,location=no,status=no,menubar=no,resizable=yes,dependent=no'
	win=window.open(mypage,myname,settings)
	//if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
} 
 
function ShowMap( postcode, title ) {
	// Multimap
	//NewWindow( 'http://uk.multimap.com/p/browse.cgi?pc='+postcode, 'MapWindow', '740', '530', 'yes' )
	date = (new Date()).getTime()
	if ( title == null ) {
		NewWindow( 'http://www.streetmap.co.uk/streetmap.dll?Postcode2Map?'+postcode+'&nolocal=Y', date, '625', '785', 'no' )
	} else {	
		NewWindow( 'http://www.streetmap.co.uk/streetmap.dll?Postcode2Map?'+postcode+'&title='+title+'&nolocal=Y', date, '625', '785', 'no' )	
	}
}

function userMail(id) {
	NewWindow('/app/util/usermail.asp?id='+id,id,'590','365','no')
}



