// JavaScript Document

function sendQuery( filterStr )
{
	try
	{
		var input = d.getElementById( 'searchInput' ).value;
		if( input )
		{
			setCookie('seek_n_destroy', input, 1);
			var scout = new AjaxGhost( 'searchResults' );
			var filter = ( filterStr ) ? '&filterStr=' + filterStr : '';	
			scout.loadOnDiv( 'php/sp_snd.php', 'searchStr=' + input + filter );
		}
	}
	catch( e )
	{
		alert( ( ( e.message ) ? e.message : e.description ) + ' : ' + e.number );
	}
}

function openResultNote( id )
{
	try
	{
		var noteLink = new AjaxGhost();
		noteLink.loadOnDiv( 'php/sp_note.php', 'id=' + id + '&sec=' + 5, 7 );
	}
	catch( e )
	{
		alert( e.description );
	}
}

function openResultImg( id )
{
	try
	{
		var noteLink = new AjaxGhost();
		noteLink.loadOnDiv( 'sec/sp_gallery.php', 'snd=' + id, 3 );
	}
	catch( e )
	{
		alert( e.description );
	}
}
