<!--

function GetByID (id) {
	return document.getElementById(id);
}



function openwin(url,name,width,height,scroll)
{
	var LeftPos=(screen.width)?(screen.width-width)/2:100;
	var TopPos=(screen.height)?(screen.height-height)/2:100;
	return window.open(url,name,"width="+width+",height="+height+", top=" + TopPos + ", left=" + LeftPos + ",status=yes,toolbar=yes,menubar=no,scrollbars="+scroll);
}

-->


