﻿self.onerror = function() {return false;}

function lnk(id, name) {
    window.location.href = "/search/?q="+id+"&s="+name+"/-/-/"
}

function show(id, url) {
    try{
    var img = document.getElementById(id+"-Img")
    document.getElementById(id).style.display = "block";
    if(url.indexOf("/") != -1) url = url.substring(0, url.indexOf("/"))
    
    img.src = "http://simple.thumbshots.com/image.pxf?cid=1104&v=1&w=200&h=150&url=http://" + url
    img.onload = function () {
        if(img.width < 100) {
            img.src = "images/unavailable.gif"
        }
    }
    }catch(e){}
}

function hide(id) {
    try{
        document.getElementById(id).style.display = "none";
        var img = document.getElementById(id+"-Img")
        img.onload = null;
    }catch(e) {}
}