/////////////////////////////////////////////////
	Window1 = null;	
	Params1 = "";
	   
	function openDialog1() {
		  Window1=null
		  Params1="width=350,height=550";	
	   	  closeDialog1()
	      Window1 = window.open("curriculum.asp","curriculum", Params1);
	      // for Navigator 2:
	      if (Window1 != null && Window1.opener == null) {
	         Window1.opener = window;
	      }
		  Window1.focus()
	   }
	   
	function closeDialog1() {
	      if (Window1) {
		     // IE workaround
		     if (navigator.appName == "Microsoft Internet Explorer") {
	            Window1 = window.open("curriculum.asp","curriculum", Params1);
		     }
	         if (!Window1.closed) Window1.close();
	      }
	   }
/////////////////////////////////////////////////
	Window2 = null;	
	Params2 = "";
	function openDialog2() {
		  Window2=null
		  Params2="width=200,height=300";	
	   	  closeDialog2()
	      Window2 = window.open("SOCcode.asp","SOCcode", Params2);
	      // for Navigator 2:
	      if (Window2 != null && Window2.opener == null) {
	         Window2.opener = window;
	      }
		  Window2.focus()
	   }
	   
	function closeDialog2() {
	      if (Window2) {
		     // IE workaround
		     if (navigator.appName == "Microsoft Internet Explorer") {
	            Window2 = window.open("SOCcode.asp","SOCcode", Params2);
		     }
	         if (!Window2.closed) Window2.close();
	      }
	   }
/////////////////////////////////////////////////	   
	Window3 = null;	
	Params3 = "";
	function openDialog3() {
		  //alert("open dialog");
		  Window3=null
		  Params3='width=200,height=200';	
	   	  closeDialog3()
	      Window3 = window.open('SOCcategory.asp','SOCcategory', Params3);
	      // for Navigator 2:
	      if (Window3 != null && Window3.opener == null) {
	         Window3.opener = window;
	      }
		  Window3.focus()
	   }
	   
	function closeDialog3() {
	      if (Window3) {
		     // IE workaround
		     if (navigator.appName == "Microsoft Internet Explorer") {
	            Window3 = window.open('SOCcategory.asp','SOCcategory', Params3);
		     }
	         if (!Window3.closed) Window3.close();
	      }
	   }

