<!--
var more_info = "";
var show = true;

function set_pc_info(oReq)
{	
	var width_info = '';
	var width = screen.width;
	var	height = screen.height;
	if (!(width == 0 && height == 0))
	{
		width_info = '<br/>Current Screen Resolution<br/>';
		width_info += '' + width + " x " + height + " pixels"
	}
	more_info = oReq.responseText + width_info;
}

function showinfo() {
	if (show == true)
	{
		$('id_show_extra_info').innerHTML = "Hide Extra Info";
		$('id_extra_info').innerHTML = "<div style=\"text_decoration:none;\">" + more_info + "</div>";
	}
	else
	{
		$('id_show_extra_info').innerHTML = "Show Extra Info";
		$('id_extra_info').innerHTML = "";
	}
	show = !show;
}

function get_info()
{
	return more_info;
}

//-->
