



    function onmenu(obj,type){
        var obj = obj.getElementsByTagName('blockquote')[0];
        if (!obj) return;
        var obj_style = obj.style ? obj.style : obj;
        obj.style.visibility = type ? 'visible' : 'hidden';
    }




    function Launch(win) {
	  str=win;
	  var r=parseInt(Math.random() * 1000000);
	  var name = "LaunchWindow" + r;
	  window.name=name;
	  WizardWin = window.open(str,'Wizard','resizable=no,width=750,height=500,screenX=50,left=20,screenY=50,top=20,status=no,location=no,toolbar=yes');
	  if (WizardWin.focus) {
	    WizardWin.focus();
  }
}
