


// Function Definitions
function popWin(pUrl,pFrame,width,height,scrollb,resizeb)
{
	var w = 480, h = 340;
	
	if (document.all || document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	
	var popW, popH
	popW = width;
	popH = height;
	
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	
	var pAttrib = "\'toolbar=0,scrollbars="+scrollb+",location=0,statusbar=0,menubar=0,resizable="+resizeb+",width="+width+",height="+height+",left = "+leftPos+",top = "+topPos+"\'";
	winpops=window.open(pUrl,pFrame,pAttrib);
}

function popTour()
{
	var w = 480, h = 340;
	
	if (document.all || document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	
	var popW = 701, popH = 552;
	
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	
	var pAttrib = "\'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+popW+",height="+popH+",left="+leftPos+",top="+topPos+"\'";
	winpops2=window.open('/housing/docs/tour/index.html','_tour1',pAttrib);
}