
function popup(page, pwidth, pheight) {
	pwidth = parseInt(pwidth)+20;
	pheight = parseInt(pheight)+20;
	win=window.open(page,'Pop','toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=1,width='+pwidth+',height='+pheight+',top=50');
	win.focus();
}

function popupfull(page, pwidth, pheight) {
	pwidth = parseInt(pwidth)+20;
	pheight = parseInt(pheight)+20;
	win=window.open(page,'Pop','toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width='+pwidth+',height='+pheight+',top=50');
	win.focus();
}

function bookmarkthispage() {
	if (window.sidebar) {
		window.sidebar.addPanel(document.title, location.href,"");
	} else if (window.external) {
		window.external.AddFavorite(location.href, document.title);
	}
}

function printthispage() {
	window.print(); 
}

function clearmlstext() {
	if (document.getElementById('MLSTextBox').value == 'Enter your MLS number') {
		document.getElementById('MLSTextBox').value = '';
	}
}