function launchwin(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// replace 'mainframe' below w/ID of frame
function frameHitResize(resultsURL, w, h)	{
	parent.mainframe.location.href=resultsURL;
	document.getElementById('mainframe').style.height = h;
	document.getElementById('mainframe').style.width = w; 
}
function selfFrameResize(resultsURL, w, h)	{
	this.location.href=resultsURL;
	parent.document.getElementById('mainframe').style.height = h;
	parent.document.getElementById('mainframe').style.width = w; 
}
// to call from the form, use:
// onsubmit="return validateAll(this)"

