//for use by all pages requiring a popup window

function getAttributes(type) {
var width;
var height;
var options;
var attributes;

if (type=="RentalsHelp") {
width="630";
height="400";
options="alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0,z-lock=0";
} 

	
else if (type=="RentalsPreview"){

width="630";
height="500";
options="alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=1,toolbar=1,z-lock=0";
} 

else if (type=="RentalsContent"){
width="630";
height="400";
options="alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=1,toolbar=1,z-lock=0";
} 

else if (type=="RentalsVTour"){
width="510";
height="510";
options="alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=1,scrollbars=0,status=0,titlebar=1,toolbar=0,z-lock=0";
} 

else if (type=="RentalsFloorplan"){
width="450";
height="490";
options="alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0,z-lock=0";
}
	
else if (type=="RentalsNotice"){
width="610";
height="400";
options="alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=0,scrollbars=1,status=0,titlebar=0,toolbar=0,z-lock=0";
}

else if (type=="RentalsTip"){
width="450";
height="400";
options="alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0,z-lock=0";
} 
	
else if (type.indexOf("OldTour")>=0){
width="550";
height="469";
options="alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=1,toolbar=0,z-lock=0";
} 

else if (type.indexOf("Tour")>=0){
width="700";
height="400";
options="alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=1,toolbar=0,z-lock=0";
} 

else if (type=="RentalsForm"){
width="630";
height="400";
options="alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=1,toolbar=1,z-lock=0"
}

else if (type=="CyberSpot"){
width="300";
height="400";
options="alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=1,toolbar=1,z-lock=0"
} 
	
else {
width="630";
height="400";
options="alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=1,toolbar=1,z-lock=0";
}
	
attributes="width="+width+",height="+height+","+options;
return attributes;
}

function windowPopup(myLink, windowName){
var attributes=getAttributes(windowName);
var myWin=window.open(myLink.href,windowName,attributes);
myWin.focus();
}


