
function fullScreenPop(url) {
	var w = 600, h = 400; // default sizes
	if (window.screen) {
		w = window.screen.availWidth - 12;
		h = window.screen.availHeight - 48;
	}
	pop_window = window.open(url,'fullwin','width=' + w + ',height=' + h + ',left=0,screenX=0,top=0,screenY=0,fullscreen=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes');
	self.name = "main";
}

function popwin632(url) {
	var w = 632, h = 450; // maximum size an inital popup can be
	pop_window = window.open(url,'fullwin','width=' + w + ',height=' + h + ',left=0,screenX=0,top=0,screenY=0,fullscreen=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes');
	self.name = "main";
}

function popwin(url) {
	var w = 400, h = 180; // maximum size an inital popup can be
	pop_window = window.open(url,'fullwin','width=' + w + ',height=' + h + ',left=0,screenX=0,top=0,screenY=0,fullscreen=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes');
	self.name = "main";
}



function messageWindow(title, msg)
{
  var width="300", height="125";
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  var msgWindow = window.open("","msgWindow", styleStr);
  var head = '<head><title>'+title+'</title></head>';
  var body = '<center>'+msg+'<br><p><form><input type="button" value="   Done   " onClick="self.close()"></form>';
  msgWindow.document.write(head + body);
}
