<!-- function to pop up products -->
function PropertyPopUp(ref)
{	
	var strFeatures="toolbar=no, status=no, menubar=no, location=no"
	strFeatures=strFeatures+",scrollbars=yes,resizable=no,height=450,width=650"
	strFeatures=strFeatures+",left=200,top=0"
	
	newWin = window.open(ref,"TellObj",strFeatures);

    newWin.opener = top;
}

function DirectionsPopUp(ref)
{	
	var strFeatures="toolbar=no, status=no, menubar=yes, location=no"
	strFeatures=strFeatures+",scrollbars=yes,resizable=no,height=500,width=700"
	strFeatures=strFeatures+",left=200,top=0"
	
	newWin = window.open(ref,"TellObj",strFeatures);

    newWin.opener = top;
}

function MapPopUp(ref)
{	
	var strFeatures="toolbar=no, status=no, menubar=no, location=no"
	strFeatures=strFeatures+",scrollbars=yes,resizable=no,height=550,width=650"
	strFeatures=strFeatures+",left=200,top=0"
	
	newWin = window.open(ref,"TellObj",strFeatures);

    newWin.opener = top;
}

function VirtualTourPopUp(ref)
{	
	var strFeatures="toolbar=no, status=no, menubar=no, location=no"
	strFeatures=strFeatures+",scrollbars=no,resizable=no,height=500,width=700"
	strFeatures=strFeatures+",left=200,top=0"
	
	newWin = window.open(ref,"TellObj",strFeatures);

    newWin.opener = top;
}


function FloorPlanPopUp(ref)
{	
	var strFeatures="toolbar=no, status=no, menubar=no, location=no"
	strFeatures=strFeatures+",scrollbars=no,resizable=no,height=600,width=800"
	strFeatures=strFeatures+",left=200,top=0"
	
	newWin = window.open(ref,"TellObj",strFeatures);

    newWin.opener = top;
}


function BookingConfirmationPopUp(ref)
{	
	var strFeatures="toolbar=no, status=no, menubar=no, location=no"
	strFeatures=strFeatures+",scrollbars=yes,resizable=no,height=600,width=535"
	strFeatures=strFeatures+",left=200,top=0"
	
	newWin = window.open(ref,"TellObj",strFeatures);

    newWin.opener = top;
}

