function openMap() {
	mapWindow = window.open('http://maps.google.com.au/maps?q=Rapid+Prototyping+Services&hl=en&cd=1&ei=s5kjS6_TGY6-oAT52NiXCQ&sll=-33.881247,151.11969&sspn=0.198947,0.308647&ie=UTF8&view=map&cid=14114263445793816443&ved=0CBAQpQY&hq=Rapid+Prototyping+Services&hnear=&ll=-33.913048,151.179965&spn=0.006215,0.009645&z=17&iwloc=A', 'mapWindow',
	 'toolbar=no,location=yes,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,screenX=0,screenY=0,left=0,top=0,width=1011,height=709');
	mapWindow.focus();
}

function openQuotes() {
	quotesWindow = window.open('quotes.php', 'quotesWindow',
	 'toolbar=no,location=yes,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,screenX=0,screenY=0,left=0,top=0,width=1011,height=709');
	quotesWindow.focus();
}

function openQuotes(path) {
    url = 'quotes.php';
    if (path)
        url = url + '?path=' + encodeURIComponent(path)
	quotesWindow = window.open(url, 'quotesWindow',
	 'toolbar=no,location=yes,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,screenX=0,screenY=0,left=0,top=0,width=1011,height=709');
	quotesWindow.focus();
}
