<!--
window.name = 'SbHomesWin';

function openNewWindow(URLtoOpen, windowName, windowFeatures) {
	newWindow=window.open(URLtoOpen, windowName, 'toolbar=no,scrollbars=no,width=547,height=492'); 
	newWindow.focus();  //this is in case the window is already open
						//otherwise, it looks like the link doesn't work
}



function openNewWindow1(URLtoOpen, windowName, windowFeatures) {
	newWindow=window.open(URLtoOpen, windowName, 'toolbar=no,scrollbars=no,width=547,height=570'); 
	newWindow.focus();  //this is in case the window is already open
						//otherwise, it looks like the link doesn't work
}

function openNewWindow_original(URLtoOpen, windowName, windowFeatures) {
	newWindow=window.open(URLtoOpen, windowName, windowFeatures); 
	if (!newWindow)
		alert("You must allow popups");
	newWindow.focus();  //this is in case the window is already open
						//otherwise, it looks like the link doesn't work
}

//Tyler 022704 - try without so phototours.com tours can load on top.

// this page should never load inside of another frame
//if (top.location != self.location) {
//   top.location = self.location;
//}

// -->