function setFieldValues(category, adType, place,keyWord, priceMin, priceMax)
{
    
    if (document.getElementById("categoryHidden") != null)
        document.getElementById("AddForm").category.value = document.getElementById("categoryHidden").value;

    if (document.getElementById("placeHidden") != null)
        document.getElementById("AddForm").place.value =  document.getElementById("placeHidden").value;

    if(keyWord != "" )
    {
        document.getElementById("keyWord").value =keyWord;
    }

    if(priceMin != "" )
    {
        document.getElementById("priceMin").value =priceMin;
    }

    if(priceMax != "" )
    {
        document.getElementById("priceMax").value =priceMax;
    }

    if(place != "" )
    {
        var Element = document.getElementById(place);
        Element.selected = true;
    }

    if(category != "" )
    {
        var Element = document.getElementById(category);
        Element.selected = true;
    }

    if(adType != "" )
    {
        var Element = document.getElementById(adType);
        Element.selected = true;
    }

}

//works only with ie4+
function setToHomepage() {
    var url = window.location.href;
    if (window.external) 
    {   
    document.body.style.behavior = "url(#default#homepage)";
    document.body.setHomePage(url);    
    } 

} 

// Add bokmark code
function bookmark() {
 var title = document.title; 
 var url = window.location.href;
 
    if (window.sidebar) { // Mozilla Firefox Bookmark
        window.sidebar.addPanel(title, url,"");
    } else if( window.external ) { // IE Favorite
        window.external.AddFavorite( url, title); }
    else if(window.opera && window.print) { // Opera Hotlist
        return true; }
 }
