// C.2004 by CodeLifter.com
//Script:     Instant Image Zooming
//Functions:  This script can zoom-in/zoom-out any image in
//            your page by clicking on the image.
//Browsers:   NS6+, IE.all (NS4 degrades gracefully)
//Author:     etLux
// example implementation: <img src="path/name of graphic file" alt="alt text" width="114" height="85" border="2" onclick="zoomToggle('114px','85px','456px','340px',this);">
var nW,nH,oH,oW;
function zoomToggle(iWideSmall,iHighSmall,iWideLarge,iHighLarge,whichImage)
{oW=whichImage.style.width;oH=whichImage.style.height;
	if((oW==iWideLarge)||(oH==iHighLarge))
		{nW=iWideSmall;nH=iHighSmall;}
	else
		{nW=iWideLarge;nH=iHighLarge;}
whichImage.style.width=nW;whichImage.style.height=nH;
}


