/*
      functions.js
      external funtions
   */
   // ---------------------------------------------------------

function NewWin1(objpath)
{

   var win1=open(objpath,"",'width=600,height=400,top=0,left=50,scrollbars=no');
   
   win1.focus();

}


function NewWin(objpath)
{

   var win1=open(objpath,"",'width=600,height=400,top=50,left=50,scrollbars=no');
   
   win1.focus();

}

function toogle(id)
{
var e = document.getElementById(id).style;
e.display = (e.display == "none") ? "block" : "none";
}


function closeme()
{
	if (self.opener && self.opener.popup) {
		self.opener.popup=null;
	}
	close();
}
