var box = null
var boxnum = 0
var id = "box"
function openbox(U, W, H, A, L, T){
  var d_L = 0  
  var d_T = 20
  id = "box" + boxnum++
  closebox()
  if (openbox.arguments.length >= 4)
    A = "," + A
  else 
    A = "" 
  if (openbox.arguments.length == 6)
    A += setpos(W, H, L, T)
  else
    A += setpos(W, H, d_L, d_T)
  box = window.open(U, id, "width=" + W + ",height=" + H + A)
  }
function closebox(){
  if (navigator.appName != "Microsoft Internet Explorer" 
      || parseInt(navigator.appVersion) >=4) //do not close if early IE
    if(box != null) if(!box.closed) box.close() 
  }
function setpos(W, H, L, T){
  return ""
  }
function ShowArticle() {;}
function Handspun() {;}

function GetText(article) {
	sir = "";
	sir += article;
	document.editart.article.value = sir;
}
