// JavaScript Document

function WinNew(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
window.open(strURL, 'GeorgiaMountainListings', strOptions);
}

function WinPhoto(URL) {
var remote = window.open(URL, "Photo","top=200,left=200,alwaysRaised=1,dependent=1,height=375,width=575,toolbar=0,titlebar=0,location=0,directories=0,resizable=0,status=0,menubar=0,scrollbars=0");
		}
		
function WinCenter(url,name,height,width)
{
windowFeatures ="menubar=yes,scrollbars=no,location=yes,favorites=no,resizable=yes,status=no,toolbar=yes,directories=no";
var test = "'";
winLeft = (screen.width-width)/2;
winTop = (screen.height-(height+110))/2;
myWin= open(url,name,"width=" + width +",height=" + height + ",left=" + winLeft + ",top=" + winTop + test + windowFeatures + test);

}

function WinCenterScroll(url,name,height,width)
{
windowFeatures ="menubar=yes,scrollbars=yes,location=yes,favorites=no,resizable=yes,status=no,toolbar=yes,directories=no";
var test = "'";
winLeft = (screen.width-width)/2;
winTop = (screen.height-(height+110))/2;
myWin= open(url,name,"width=" + width +",height=" + height + ",left=" + winLeft + ",top=" + winTop + test + windowFeatures + test);

}
