// JavaScript Document
function kiddyOpenWindow(url, name, w, h, s) {
  var s_w = screen.width;
  var s_h = screen.height;
  if (s_w >= 1024) {
    var x = s_w/2 - w/2;
    var y = s_h/2 - h/2 - 30;
  }
  else {
    var x = 0;
    var y = 0;
  }
  var windowprops = "width=" + w + ",height=" + h + ",screenX=" + x + ",screenY=" + y + ",left=" + x + ",top=" + y + ",scrollbars=" + s;
  popup = window.open(url,name,windowprops);
}

function kiddyOpenWindow2(url, name, w, h, s) {
  var windowprops = "width=" + w + ",height=" + h + ",screenX=0,screenY=0,left=0,top=0,scrollbars=" + s;
  popup = window.open(url,name,windowprops);
}

function kiddyOpenWindow3(url, name, w, h, s) {
	var s_w = screen.width;
	var s_h = screen.height;
	var x = s_w - w;
	var y = s_h - h;
  var windowprops = "width=" + w + ",height=" + h + ",screenX=" + x + ",screenY=" + y + ",left=" + x + ",top=" + y + ",scrollbars=" + s;
  popup = window.open(url,name,windowprops);
}