// force no errors at IE
// function noError(){return true;}
// window.onerror = noError;

// admin edit link fix
jQuery(document).ready(function()
 {
    try
    {
    	jQuery('.comment-edit-link').before('|&nbsp; ');
    	jQuery('.comment-edit-link').html('Edit');
    } catch(err) {}
  });
function submit_search_form()
  {
	if ( document.getElementById('s').value != 'Search' ) 
	    { 
		  return true;
		}
	else
	    {
          return false;
		}
	}
	
// validate input of the submitted email form
email_form_submit = function()
{
	if ( document.getElementById('subsctext').value != 'Enter your e-mail:' )
	 {
	 	return true;
	 }
	 else
	 {
	 	return false;
	 } 
}
