function imgMouseOut( id, w, h ) 
{ 
	elem = document.getElementById( id ); 
	elem.style.background = "url( /cms2/images/tsv/lupe_small.gif ) no-repeat bottom left"; 
	elem.style.height = h-2; 
	elem.style.width = w-2; 
	elem.style.cursor = "default"; 
}
                  
function imgMouseOver( id, w, h ) 
{ 
	elem = document.getElementById( id ); 
	elem.style.background = "url( /cms2/images/tsv/lupe.gif ) no-repeat center"; 
	elem.style.height = h-2; 
	elem.style.width = w-2;
	elem.style.cursor = "pointer"; 
}

function clickToBig( href, w, h ) 
{ 
	alert(href);
	w += 30; h += 30; 
	//imageBig = window.open( href + ".html?tpl=bigpic", "Image", "width="+ w +",height=" + h + ",resizable=yes,scrollbars=yes,location=no,status=no,toolbar=no" );
	imageBig = window.open( href , "Image", "width="+ w +",height=" + h + ",resizable=yes,scrollbars=yes,location=no,status=no,toolbar=no" );
	imageBig.focus(); 
}


