/* called by link that shows/hides complete profile details form and extended test results */
function toggleWithBlind(ele, anch, show, hide){
    var elm = $(ele);
	if (elm.style.display == "none") {
        if(anch != null && hide != null){
	        anch.innerText = hide;
        }
        var postbackField = document.getElementById(elm.getAttribute("state"));
        postbackField.value = false;
		new Effect.BlindDown(ele);
	} else {
		if(anch != null && show != null){
	        anch.innerText = show;
        }
        var postbackField = document.getElementById(elm.getAttribute("state"));
        postbackField.value = true;        
        new Effect.BlindUp(ele);
	}
}

function popHelp(url){
	window.open(url,'help','width=450,height=400,resizable=yes,scrollbars=yes')
}