
function openPhotoArticleWindow (url) {
	photoArticleWin = window.open(url, "photoArticleWin", "toolbar=no,menubar=no,resizable=yes,width=800,height=610,scrollbars=yes");
	photoArticleWin.focus(); 
} 

function openPreviewWindow (url) {
	previewWin = window.open(url, "previewWin", "toolbar=no,menubar=no,resizable=yes,width=600,height=400,scrollbars=yes");
	previewWin.focus();
}


function openMapWindow (url, wt, ht) {
	mapWin = window.open(url, "mapWin", "toolbar=no,menubar=no,resizable=yes,width="+wt+",height="+ht+",scrollbars=yes");
	mapWin.focus();
}

function openWindow (url, wt, ht) {
	mapWin = window.open(url, "mapWin", "toolbar=no,menubar=no,resizable=yes,width="+wt+",height="+ht+",scrollbars=yes");
	mapWin.focus();
}

function openNewWindow (url) {
	mapWin = window.open(url, "mapWin", "directories=yes,status=yes,location=yes,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes");
	mapWin.focus();
}