// JavaScript Document


function randOrd(){
return (Math.round(Math.random())-0.5); } 

function detectPopupBlocker() {
  var myTest = window.open("blank.asp","","directories=no,height=3,width=3,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,left:5000;top=5000,location=no");
  if (!myTest) {
    alert("It appears you have pop ups blocked./n/nYou must allow pop ups for this system to operate properly\n\nPlease turn pop up blocker OFF and refresh the screen.");
  } else {
    myTest.close();
    //alert("No popup blocker was detected.");
  }
}

function resView(URL) {
	var resWin = window.open(URL,"resWin","toolbar=0,scrollbars=1,location=No,statusbar=0,menubar=0,resizable=1,width=300,height=200,left=5,top=5");
}

