Code
<script type='text/javascript' src='http://rusalt.pp.ru/highslide-full.packed.js'></script>
<script>
function activateDownloadLinks() {
$('#DownloadButton').css('display', 'none');
$('#ReadRules').attr('checked', 'checked');
$('#DownloadLinks').css('visibility','visible').fadeIn(500);
};
function deactivateDownloadLinks() {
$('#DownloadLinks').hide(300, function() { $('#DownloadButton').show() });
};
function toggleSearchLinks() {
$('#searchForMore').slideToggle(300);
};
function checkLink(str) {
str = str.replace(/'/, "'");
if (str.match('http://') == null)
str = 'http://' + str;
return str;
};
function StartSearching(type) {
Searching(type);
document.poisk.query.value = Artist;
document.poisk.FindBtn.click();
};
function showFullImage(link, text) {
var imag = new Image();
imag.src = link;
var wd = imag.width + 23;
var ht = imag.height + 42;
new _uWnd('Img',text,wd,ht,{url:link});
$('div.xw-body').append(imag);
return false;
};
</script>