<!--
//function goto_site(url, name, width, height) {
function goto_site(url) 
{
	var x = 0;
	var y = 0;

  width = screen.width - 10;   //Adjust for the end of screen (don't know why?)
  height = screen.height - 105; //Adjust for the Icon Bar at the bottom of the window.

	if(navigator.appVersion.length > 0 && navigator.appVersion.charAt(0) > '3' && navigator.appVersion.charAt(0) <= '9') {
		if(width > screen.availWidth - 12) 
		{
			width = screen.availWidth - 12;
		}
		if(height > screen.availHeight - 48) 
		{
			height = screen.availHeight - 48;
		}
		x = (screen.availWidth - 12 - width) / 2;
		y = (screen.availHeight - 48 - height) / 2;
	}
	var params =  "toolbar=1,status=1,scrollbars=1,resizable=1,screenX=" + x + ",screenY=" + y + ",width=" + width + ",height=" + height + ",top=0,left=0)";
	var windowvar = window.open(url, "", params);
}
-->
