// the client's secret word
var secretWord = "martinspoint";

// the function called when the link is clicked
function GoHW(pageUrl)
{	
	var pageurl1;
	var features;
	var ItsTheWindow;
	
	if(pageUrl == null)
	{
		alert("You must pass a Healthwise URL to GoHW()");
		return;
	}
	
	pageurl1 = pageUrl + "&f=" + secretWord;
	
		
	 features = "height=600,width=810,"
		+"toolbar=yes,location=no,directories=no,menubar=no,statusbar=no,"
	+"scrollbars=yes,resizable=yes,copyhistory=no";
		

	ItsTheWindow = window.open(pageurl1, 
	   "NewWindow",
	   features);
	ItsTheWindow.focus();
	

}