<!-- 

abouton = new Image();
abouton.src = "images/nav_about_on.gif";
aboutoff = new Image();
aboutoff.src = "images/nav_about_off.gif";
producton = new Image();
producton.src = "images/nav_products_on.gif";
productoff = new Image();
productoff.src = "images/nav_products_off.gif";
seerviceon = new Image();
seerviceon.src = "images/nav_services_on.gif";
seerviceoff = new Image();
seerviceoff.src = "images/nav_services_off.gif";
infoon = new Image();
infoon.src = "images/nav_info_on.gif";
infooff = new Image();
infooff.src = "images/nav_info_off.gif";
contacton = new Image();
contacton.src = "images/nav_contacts_on.gif";
contactoff = new Image();
contactoff.src = "images/nav_contacts_off.gif";


function img_act(imgName)
{
        imgOn = eval(imgName + "on.src");
        document [imgName].src = imgOn;
}

function img_inact(imgName) 
{
        imgOff = eval(imgName + "off.src");
        document[imgName].src = imgOff;
}

function NewPopupWindow(url, id)
{

	var width = 400;
	var height = 200;
	var left = (screen.availWidth - width) / 2;
	var top = (screen.availHeight - height) / 2;
	var open = window.open(url + '?id=' + id, 'Victan', 'left=' + left + ',top=' + top + ',width=' + width + ',height=' + height + ',menubar=no,status=no,location=no,resizable=no');
	open.focus();
}

function NewPopupWindow2(url, width, height)
{
	var open = window.open(url, 'wndpopup', 'width=' + width + ',height=' + height + ',menubar=no,status=no,location=no,scrollbars=yes, resizable=yes');
	open.moveTo((screen.availWidth - width) / 2, (screen.availHeight - height) / 2 + 10);
	open.focus();
}

// -- End -->
