<!-- //

function cImg(on_off, imgName)
{
	var imgT = "";
	switch(on_off)
	{
		case 0:
		{
			imgT = '/images/buttons/' + imgName + '_off.gif';
			eval("document." + imgName + ".src = '" + imgT + "';");
			break;
		}
		case 1:
		{
			imgT = '/images/buttons/' + imgName + '_on.gif';
			eval("document." + imgName + ".src = '" + imgT + "';");
			break;
		}
	}
}

function openPrintWindow(url, name)
{
	printWindow = window.open("/print"+url, name, "menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0,titlebar=1,width=680,height=700");
	if (printWindow)
	{
		printWindow.focus();
		printWindow.moveTo(10,10);
	}
}
	
//-->

