﻿function Swap(img,filename)
{
	document.images[img].src=eval(filename+'.src');
}

function Zoom(picfile,picwidth,picheight)
{
	window.open('main_zoom.asp?F='+picfile+'&W='+picwidth+'&H='+picheight,picfile,'width='+picwidth+',height='+picheight+',left=50,top=50,screenX=50,screenY=50, scrollbars=no');
}

function Toggle(id)
{
	el = document.getElementById(id);
	var display = el.style.display ? '' : 'none';
	el.style.display = display;
}

function PanelSoftware()
{
	i = document.PanelSoftware.PanelSoftwareList.selectedIndex;
	if (i == 0) return;
	url = 'software.asp?ID='+document.PanelSoftware.PanelSoftwareList.options[i].value;
	parent.location.href = url;
}

function Download(file)
{
	window.location.href='service_download.asp?ID='+file,file,'width=50,height=50,left=40,top=40,screenX=0,screenY=0, scrollbars=no';
}