function showHide(itemId){
	var target= document.getElementById(itemId);
	
	if(target.style.visibility == "visible")
	{
		target.style.visibility = "hidden";
	}
	else
	{
		target.style.visibility = "visible";		
	}
}

function redirect(txt) {

	window.open(txt,'_new');
	
}   




  if(Event && Event.observe)
  {
      Event.observe(window, 'load',
            function() { 

                if($("questionform"))
                {
                    $("questionform").setAttribute('action', '/form/process');  
                }


                 }
          );
      
    
  }
