function MeNe(strLocation) 
{
	if (document.forms.navigationForm) 
  {
	  if (strLocation.indexOf("javascript:") > -1) 
    {
			eval(strLocation);
	  } 
    else 
    {
			document.forms.navigationForm.action = strLocation;
			document.forms.navigationForm.submit();
	  }
	} 
  else 
  {
	  if (strLocation.indexOf("javascript:") > -1) 
    {
			eval(strLocation);
	  }
    else 
    {
			document.location = strLocation;
	  }
	}
}

function openwindow(name, width, Height) 
{
  window.open("", name, 'toolbar=0,location=0,scrollbars=1,width=' + width + ', height=' + Height + ', resizable=1');
}
