

function doPage(){
f = document.loadUrl;

if(document.all && navigator.appName.indexOf("Microsoft")>=0) {
	if(f.public.value=="on") {
		 f.action="public/editor.hta";
		 } else
	if(f.private.value=="on") {
		 f.action="private/editor.hta";
		 }
		 f.submit();
	 } else {
	 alert("This requires Internet Explorer and Windows to opertate");
 }
}


function openScriptMenu(which){ 
sp = which.split(" ")
sp1=sp.join("")
sp2=sp1.split("%20")
sp3=sp2.join("")
if(location.href.indexOf("localhost")>=0) {
open("add-ons/scr_wizard.php?script="+sp1,"script","width=400,height=400,resizable=yes");
 } else {
open("add-ons/scr_wizard.php?script="+sp1,"script","width=400,height=400,resizable=yes"); 
 }
} 