// test

function popUp(newURL, newName, h, w) {
  var remote = open(newURL, newName, 'height= ' + h + ',width=' + w + ',channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=1,status=1,toolbar=0');
}
function popUpPlain(newURL, newName, h, w) {
  var remote = open(newURL, newName, 'height= ' + h + ',width=' + w + ',channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0');
}
function new_window(url, wd, ht){
	link=window.open(url,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,"+"width="+wd+" ,height="+ht+" ,left=40,top=15");
}