if (document.images)
{
	SrcArr = new Array ("i_look_a","i_download_a");
	ImgArr = new Array ();
	j = 0;
	for (i in SrcArr)
	{
		ImgArr[j] = new Image ();
		ImgArr[j].src = "/templates/pic/" + SrcArr[i] + ".gif";
		j++;
	}
}

function ChgImg(img, Pic)
{
	if (img)
	{
		img.src = "/templates/pic/"+ Pic + ".gif";
	}
}
function open_download_popup(files,item_title,files_format)
{
	wnd=window.open('/area/service/download/','','resizable=0,toolbar=0,menubar=0,scrollbars=0,status=0,width=622,height=385');
	wnd.files=files;
	wnd.item_title=item_title;
	wnd.files_format=files_format;
}
function open_feedback_popup()
{
	wnd=window.open('/area/service/feedback/','','resizable=0,toolbar=0,menubar=0,scrollbars=0,status=1,width=622,height=460');
}