function checkSearchEnter(e)
{
    if (e.keyCode == 13)
	{
		var inputString = document.getElementById('searchfield').value;
		var url = "index.php?action=search&input="+inputString;
        window.open(url, "_self");      
    }
}
function openSearch(searchform)
{
		var inputString = searchform.searchfield.value;
		var url = "index.php?action=search&input="+inputString;
        window.open(url, "_self");      
}
function checkSearch(inputfield)
{
	if(inputfield.value=="search...")
	{
		inputfield.value="";
	}
	else
	if(inputfield.value == "")
	{
		inputfield.value="search...";
	}
}
function SWFDelegate(url,width,height,caption,vars)
{
   var objLink = document.createElement('a');
   objLink.setAttribute('href',url);
   objLink.setAttribute('rel','lightbox');
   objLink.setAttribute('lb_title',caption);
   if(typeof width != 'undefined')
   {
      objLink.setAttribute('width',width);
   }
   if(typeof height != 'undefined')
   {
      objLink.setAttribute('height',height);
   }
   if(typeof vars != 'undefined')
   {
      objLink.setAttribute('vars',vars);
   }
   Lightbox.prototype.start(objLink);
}
//myLightbox = new Lightbox();
