// JavaScript Document
function openwindow(wurl,wname,wwidth,wheight)
{
  var width 	  = wwidth;
  var height	  = wheight;
  var url         = wurl;
  var name        = wname;
  var str = "height="+height+",innerHeight="+height+",width="+width+",innerWidth="+width+",scrollbars=no";
  if(window.screen)
  {
	var xc = (screen.width - wwidth) / 2;
	var yc = (screen.height - wheight) / 2;
	str += ",left="+xc+",screenX="+ xc+",top="+yc+",screenY="+yc;
  } 
  wwindow=window.open(url, name, str);
}
// open window met scrollbars
function openwindow2(wurl,wname,wwidth,wheight)
{
  var width 	  = wwidth;
  var height	  = wheight;
  var url         = wurl;
  var name        = wname;
  var str = "height="+height+",innerHeight="+height+",width="+width+",innerWidth="+width+",scrollbars=yes";
  if(window.screen)
  {
	var xc = 0
	var yc = 0
	str += ",left="+xc+",screenX="+ xc+",top="+yc+",screenY="+yc;
  } 
  wwindow=window.open(url, name, str);
}