// JavaScript Document

function redirect ( url )
{
	document.location.href = url;	
}

function draw_help_box ( label, title, text )
{
	document.write (	
						"<div><img id='" + label + "' onmouseover='showhide_help_box(this.id, true);' onmouseout='showhide_help_box(this.id, false);' style='cursor:help; margin:5px;' src='/images/exclamation.png' /></div>" +
						"<div id='box_" + label + "'" + 
						"style='opacity: .95; filter: alpha(opacity=95);position:absolute; color:#333333; line-height:16px; text-align:left; display:none; font-size:10px; width:300px; margin:5px; background-color:white; border:1px solid black; padding:10px;'>" + 
						"<div class='help_title'>" + title + "</div>" + 
						"<div class='help_content'>" + text + "</div>" + 
						"</div>"
					);	
}

function showhide_help_box ( id, show )
{
	if (show)
		document.getElementById("box_" + id).style.display="";
	else
		document.getElementById("box_" + id).style.display="none";
}