function popupWin(theURL,winName,winW,winH) {
	var x_coord = (screen.width - winW) / 2;
	var y_coord = (screen.height - winH) / 2;
	var winProps = "height="+winH+",width="+winW+",scrollbars=yes,resizable=yes,status=yes";
  Win = window.open(theURL,winName,winProps);
	Win.window.moveTo(x_coord, y_coord);
	if (parseInt(navigator.appVersion) >= 4) { 
		Win.window.focus(); 
	}
}
/////////////////////////////////////////////////////////////////////////////////////////////////
function deleteCode() {
	var check = confirm("Are you sure you want to delete this code?");
	if(check == true) {
		return true;
	} else {
		return false;
	}
}
/////////////////////////////////////////////////////////////////////////////////////////////////
function showhide(id,id2){
	if (document.getElementById){
		obj = document.getElementById(id);
		obj2 = document.getElementById(id2);
		if (obj.style.display == "none"){
			obj.style.display = "";
			obj2.style.display = "none";
		} else {
			obj.style.display = "none";
			obj2.style.display = "";
		}
	}
}
/////////////////////////////////////////////////////////////////////////////////////////////////
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
