function openwindow(doc)
  {
   ow = window.open("../wir/"+doc+".htm", "01", "width=550,height=490,scrollbars");
   ow.focus();
  }

function popup(doc)
  {
   ow = window.open(doc+"1.htm", "01", "width=250,height=450");
   ow.focus();
  }
function popup1(doc)
  {
   ow = window.open("../html/"+doc, "01", "width=750,height=550,scrollbars");
   ow.focus();
  }
function infobox(doc)
  {
   ow = window.open(doc+".asp", "01", "width=400,height=370,scrollbars");
	if (screen.width==1280){
		ow.moveTo(400,300);	//1280*1024
	}
	if (screen.width==1024){
		ow.moveTo(260,260);	//1024*768
	}
	if (screen.width==800){
		ow.moveTo(140,180);	//800*600
	}
   ow.focus();
  }
function popup2(doc, vwidth, vheight)
  {
   ow = window.open("../html/"+doc, "01", "width=" +vwidth +",height=" + vheight + ",scrollbars");
   ow.focus();
  }
