var myPopUp;
var myPopUp2;
var myPopUp3;
var myPopUp4;
var myPopUp5;

function launch(newURL, newName, newFeatures) {
  var remote = open(newURL, newName, newFeatures);
  if (remote.opener == null)
	alert("window is already open");
    remote.opener = window;
  return remote;
}

function popUpWindow(newURL) {
  if (!myPopUp || myPopUp.closed) {
  	myPopUp = launch(newURL,"Feedback","height=560,width=475,screenX=15,left=15,screenY=15,top=15,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0");
	} else {
		myPopUp.focus();
		myPopUp.location.href = newURL;
	}
}

function netscape() {
  if (!myPopUp2 || myPopUp2.closed) {
  	myPopUp2 = launch('/ManufacturingServices/config/netscape.html',"DownloadIE","height=300,width=450,screenX=5,left=5,screenY=5,top=5,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0");
	} else {
		myPopUp2.focus();
	}
}


function popUpWindow3(newURL) {
  if (!myPopUp3 || myPopUp3.closed) {
  	myPopUp3 = launch(newURL,"ChemicalProductApprovalFormHelp","height=300,width=300,screenX=15,left=15,screenY=15,top=15,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0");
	} else {
		myPopUp3.focus();
		myPopUp3.location.href = newURL;
	}
}

function popUpWindow4(newURL) {
  if (!myPopUp4 || myPopUp4.closed) {
  	myPopUp4 = launch(newURL,"VirtualManufacturing","height=350,width=500,screenX=15,left=15,screenY=15,top=15,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0");
	} else {
		myPopUp4.focus();
		myPopUp4.location.href = newURL;
	}
}

function nearMiss(newURL) {
  if (!myPopUp5 || myPopUp5.closed) {
  	myPopUp5 = launch(newURL,"NearMissImage","height=650,width=750,screenX=15,left=15,screenY=15,top=15,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0");
	} else {
		myPopUp5.focus();
		myPopUp5.location.href = newURL;
	}
}

var browser=navigator.appName;

if (browser.indexOf("Netscape") >= 0)
	netscape();


