﻿function search() {
        var searchString = document.getElementById('tbSearchquery').value;
        if (searchString != '')
            self.location = 'http://www.gratisfynda.se/Search.aspx?q=' + searchString;
}
function captureReturn( event )
{
    if(event.which || event.keyCode)
    {
	    if ((event.which == 13) || (event.keyCode == 13)) 
	    {
	        document.form1
		    search();			    
		    return false;
	    }
	    else 
	    {
		    return true;
	    }
	}
}    
    
function searchboxFocus()
{
    document.getElementById('tbSearchquery').focus();        
}

function addRedirect(itemId)
{    
    window.open('http://www.gratisfynda.se/Redirect.ashx?itemID=' + itemId);
    return false;
}

function popUpMessage(text, redirectPage)
{
    alert(text);   
    if (redirectPage != '') 
        self.location = redirectPage;
    else
        self.location = 'Default.aspx';    
}

function showDiv(id)
{
    if (id != '')
    {
        var div = document.getElementById(id);
        
        if (div.style.display == 'block')
            div.style.display = 'none';
        else
            div.style.display = 'block';            
        
    }
}