<!-- hide contents from old browsers

function statusbar(msgStr)
{
  document.returnValue = false;
  if (document.images)
	{ 
     window.status = msgStr;
     document.returnValue = true;
  }
}

function OpenWindow(url,winname,flags)
{
	var wheight = 400;
	var wwidth = 480;

	if ( flags == null ) { flags = "statusbar=no,status=no,location=no,locationbar=no,personalbar=no,directories=no,menubar=no,scrollbars=no,toolbar=no,copyhistory=no";}
	if ( winname == null ) { winname = "ImageView"; }

	var win = window.open(url,winname,"height="+wheight+",width="+wwidth+","+flags);	
}

// stop hiding -->

