﻿// JavaScript Document
//
// Pop-up windows
function win_open(win_name, where, type_val) {
	var win_type = new Array();

	
	// Available Homes
	win_type[0]="menubar=no,scrollbars=yes,resizable=no,width=870,height=550";	
	// Brims property specs
	win_type[1]="menubar=yes,scrollbars=yes,resizable=yes,width=650,height=550";
	// Finance pop up
	win_type[2]="menubar=yes,scrollbars=yes,toolbars=yes,resizable=yes,width=700,height=450";
	// Vtours
	win_type[3]="menubar=no,scrollbars=no,resizable=no,width=410,height=330";
	//
	win_type[4]="menubar=yes,scrollbars=yes,resizable=yes,width=825,height=425";
	
	win_name = window.open(where, win_name, win_type[type_val]);
	win_name.focus();
}
//
// Urchin Tracker
_uacct = "UA-866472-1";
urchinTracker();
//
