﻿
// savonvoima.js

function doQuikSelectAction(xtxt)
{
	if (xtxt)
	{
		var xtxtAR = xtxt.split(",");
		if (xtxtAR.length ==2)
			if (xtxtAR[1]=='_blank')
				window.open(xtxtAR[0])
			else
				document.location.href =xtxtAR[0];
				
	}	
}

function DoFontShrinkEffect()
{
	if (!document.all)
	{
		var txtTmp = window.location.toString();
		if (txtTmp.toLowerCase().indexOf("energiansaastolamput.aspx") > -1)
			document.write('<style>  TD.maincontentTD H1 { font-size: 19px !important; } </style>');
	}		
}
DoFontShrinkEffect();


// laskutulkki
var svPreviousItem = '';
function showHide_tooltip(svitem) {
	if (document.getElementById(svitem).className == 'show') {
		document.getElementById(svitem).className='';
	} else {
		document.getElementById(svitem).className='show';
	}
	if (svPreviousItem && svPreviousItem!= svitem)	
		document.getElementById(svPreviousItem).className='';
	svPreviousItem = svitem;	
}	

