function openCalendarWindow(mo)  {
	newWindow = window.open('calendar.asp?mo=' + mo, 'newWin','toolbar=no, width=800, height=600, resizable=yes, scrollbars=yes');
	if (window.focus) {newWindow.focus()}
}

function openGalleryWindow()  {
	newWindow = window.open('gallery.asp', 'newWin','toolbar=no, width=850, height=600, resizable=yes, scrollbars=yes');
}

function openCCWindow(photo)  {
	newWindow = window.open('http://finance.yahoo.com/currency?u', 'newWin','toolbar=no, width=420, height=450, resizable=no, scrollbars=no');
	if (window.focus) {newWindow.focus()}
}

function openPhotoWindow(photo,width,height)  {
	newWindow = window.open('photosBig/' + photo + '.jpg', 'photo','toolbar=no, width=' + width + ', height=' + height + ', resizable=yes, scrollbars=yes');
	if (window.focus) {newWindow.focus()}
}

// The fx below is used to open the Provence map window
function openMapWindow(map)  {
	newWindow = window.open(map + '.asp',  'newWin','toolbar=no, width=825, height=750, resizable=yes, scrollbars=yes');
}

// The fx below is used to open the Luberon map window from the Provence window
function openMap1Window(map)  {
	newWindow = window.open(map + '.asp',  'newerWin','toolbar=no, width=825, height=650, resizable=yes, scrollbars=yes');
}

function openMarketsWindow(photo)  {
	newWindow = window.open('marketsPrint.asp', 'newWin','toolbar=no, width=700, height=800, resizable=yes, scrollbars=yes');
	if (window.focus) {newWindow.focus()}
}

function openBookingWindow(booking)  {
	newWindow = window.open('bookingDisp.asp?id=' + booking, 'newWin','toolbar=no, width=550, height=600, resizable=yes, scrollbars=yes');
	if (window.focus) {newWindow.focus()}
}

