function EnterSearchInput(searchbox, deftext) {
	searchbox.value = deftext;
	searchbox.select();
	document.getElementById('searchbox').style.color = '#000';
}

function verify_images() {
    for (var i = 0; i < document.images.length; i++) {
        img = document.images[i];
        if (img.src.indexOf('images.amazon.com') >= 0 || img.src.indexOf('images-amazon.com') >= 0) {
            w = img.width;
            h = img.height;
            if ((w == 1) || (h == 1)) {
                img.src = 'http://www.dvdfriends.com/images/no_image.gif';
                img.width = 125;
                img.height = 125;
            } else if ((img.complete != null) && (!img.complete)) {
                img.src = 'http://www.dvdfriends.com/images/no_image.gif';
                img.width = 125;
                img.height = 125;
            }
        }
    }
}