/*
*******************************************************************************************
Purpose:	Jumps to anchor in page that has question inputs (unless old browser)
			Anchors must be named "1","2", etc.
Arguments:	pstrAnchor
Returns:	null
Created: 	07/09/1999
By: 		Neal Tillotson
Supports:	JavaScript 1.1 or higher		
Usage: 		onclick="GoToAnchor(2);"

Changed:	
By:	   
*******************************************************************************************
*/
 
function GoToAnchor(pstrAnchor){
	// Skip jump for IE3. In old browser jumping to anchor resets all inputs. 
	var strName
	var lngVer
    strName = navigator.appName;
    lngVer = parseInt(navigator.appVersion);
    if (strName == "Microsoft Internet Explorer" && lngVer < 4) {return null};
	
	window.location = '#'+pstrAnchor; 
	return null
}

