function KeywordSearch()
{
   var obj = window.document.getElementById( 'txtSiteSearch' );
   window.location.href = gsAppPath + '/search.aspx?sp-q=' + obj.value;
}

function FireButtonClickOnEnter( buttonId )
{
   if( window.layers )
   {
      return;
   }

   if( window.event.keyCode == 13 )
   {
      var obj = window.document.getElementById( buttonId );
      obj.click();
      event.returnValue = false;
   }
}

function OpenImageUploadControl( pageUrl )
{
	window.open( pageUrl, "ImageUpload", "height=300,width=500,status=yes,directories=no,toolbar=no" );
}
