function init(ATitle,AReferrer)
{
	document.write("<script language='JavaScript' src='http://WWW.aspect-server.com/?Network=Aspect_Home&ID=Open&Message="+ATitle+"'></script>");
};

/*  Sets the contents of frames based on selections in drop-down lists */
function set_contents(AFormName)
{
	form = document.getElementById(AFormName);
	strFrame = form.select_frame.value;
	strSelection = form.select_content.value;
	iframe = top.document.getElementById(strFrame);
	iframe.src=strSelection;
};

/* Sets the frame contents when the download link is selected.  This function is no longer required since 
	frame contents are now set on the fly with onclick in the hyperlink.  It's just here for reference */
function preset_download()
{
	top.document.getElementById("iframe_left").src = "aspect/contact_aspect_software.html";
	top.document.getElementById("iframe_body").src = "aspect/download_aspect_software.html";
	top.document.getElementById("iframe_right").src = "about:blank";
};

function showReport(url)
{
	newwindow=window.open(url,'name','height=800,width=900,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
