function go(url,page)
{
/**----------------------------------Data Send--------------------------*/
	select_p=document.getElementById('select_p').value;
    path=url+'&page='+select_p;
    //alert(path);
    window.location=path
}//end function
/**--------------------------------------------------------------------------------**/
function go_page(main,url,page)
{
	var xmlHttp;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    try
      {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    catch (e)
      {
      alert("Your browser does not support AJAX!");
      return false;
      }
    }
  }
///////////////////////////////////////////////////////////////////////////////	//
////your code start here 
/**----------------------------------Data Send--------------------------*/
	select_p=document.getElementById('select_p').value;
	
	res=main+'.php?root='+url+'&page='+select_p;
    
		/*url=(res+'&rnd='+Math.random());
		open_url(url,'view_pages');*/
		window.location=res;

}//end function