//access map
function Open_map (url) {
	var object = window.open (url, "", "width=520, height=620, scrollbars=1, resizable=1");
	object.focus ();
	return object;
}
function Open_contact (url) {
	var object = window.open (url, "", "width=600, height=640, scrollbars=1, resizable=1");
	object.focus ();
	return object;
}
function Open_guide (url) {
	var object = window.open (url, "", "width=600, height=400, scrollbars=1, resizable=1");
	object.focus ();
	return object;
}
