var baseURL = 'http://www.sodwork.com/';

function popUp (windowURI, windowWidth, windowHeight) {
	var windowFeatures = 'width='+windowWidth+',height='+windowHeight+',scrollbars=1';
/*	alert (windowFeatures); */
	window.open (baseURL + windowURI, 'new', windowFeatures);
}

function zapDefault(box, defaultText)
{
	if (box.value == defaultText) box.value='';
}
