function showHelp( id ) {
	w = window.open("help.asp?view="+id, "", "location=no; resizable=1; height=416; width=650px;");
}

function resizeHelpWin() {
	hdiv = document.getElementById("helpdiv");
	hdiv.style.width=((document.body.clientWidth-20 > 0) ? document.body.clientWidth-20 : 1);
	hdiv.style.height=((document.body.clientHeight-143 > 0) ? document.body.clientHeight-143 : 1);
	if ((hdiv.style.width == "1px") || (hdiv.style.height == "1px")) hdiv.style.visibility="hidden"; else hdiv.style.visibility="visible";	
}