/* <meta name="Purpose" Content= "facilitates popup window for message"> */

var gblViewWindow

function goView(strURL) {

  var undefined

  if(gblViewWindow === undefined){
  //alert(strURL)
	strURL = strURL+"&txtEQ="+Math.random();
	gblViewWindow = window.open(strURL,"gblViewWindow","resizable=yes,toolbar=no,statusbar=no,menubar=no,scrollbars=yes,height=350,width=430,left=50,top=25");
	//alert("undefined");
  }else{
    //alert("else: " + strURL)
	if(gblViewWindow.closed){
		strURL = strURL+"&txtEQ="+Math.random();
	gblViewWindow = window.open(strURL,"gblViewWindow","resizable=yes,toolbar=no,statusbar=no,menubar=no,scrollbars=yes,height=350,width=430,left=50,top=25");
	}else{
		// close window and open a new one.
		gblViewWindow.close();
		goView(strURL)
	}
  }
}
function goSearch(strURL) {

  var undefined

  if(gblViewWindow === undefined){
  //alert(strURL)
	strURL = strURL+"&txtEQ="+Math.random();
	gblViewWindow = window.open(strURL,"gblViewWindow","resizable=yes,toolbar=no,statusbar=no,menubar=no,scrollbars=yes,height=600,width=800,left=10,top=15");
	//alert("undefined");
  }else{
    //alert("else: " + strURL)
	if(gblViewWindow.closed){
		strURL = strURL+"&txtEQ="+Math.random();
	gblViewWindow = window.open(strURL,"gblViewWindow","resizable=yes,toolbar=no,statusbar=no,menubar=no,scrollbars=yes,height=600,width=800,left=10,top=15");
	}else{
		// close window and open a new one.
		gblViewWindow.close();
		goSearch(strURL)
	}
  }
}

function goSearch2(strURL) {

  var undefined

  if(gblViewWindow === undefined){
  //alert(strURL)
	strURL = strURL+"&txtEQ="+Math.random();
	gblViewWindow = window.open(strURL,"gblViewWindow","resizable=yes,toolbar=no,statusbar=no,menubar=no,scrollbars=yes,height=600,width=800,left=10,top=15");
	//alert("undefined");
  }else{
    //alert("else: " + strURL)
	if(gblViewWindow.closed){
		strURL = strURL+"&txtEQ="+Math.random();
	gblViewWindow = window.open(strURL,"gblViewWindow","resizable=yes,toolbar=no,statusbar=no,menubar=no,scrollbars=yes,height=600,width=800,left=10,top=15");
	}else{
		// close window and open a new one.
		gblViewWindow.close();
		goSearch(strURL)
	}
  }
}
