// JavaScript Document
function showhide(targetName,targetImg) {
		if( document.getElementById ) { // NS6+
            target = document.getElementById(targetName);
            image = document.getElementById(targetImg);
        } else if( document.all ) { // IE4+
            target = document.all[targetName];
            image = document.all[targetImg];
        }
        if( target ) {
			if( target.style.display == "inline" ) {
                target.style.display = "none";
            } else {
                target.style.display = "inline";
            }
        }
        if( image ) {
			if( image.src == "http://www.stockmarketinfolink.com/images/arrow_on.png" ) {
                image.src = "http://www.stockmarketinfolink.com/images/arrow_down.png";
            } else {
                image.src = "http://www.stockmarketinfolink.com/images/arrow_on.png";
            }
        }
} 

function swapimg(targetImg) {
		if( document.getElementById ) { // NS6+
            image = document.getElementById(targetImg);
        } else if( document.all ) { // IE4+
            image = document.all[targetImg];
        }
        if( image ) {
			if( image.src == "http://www.stockmarketinfolink.com/images/arrow_off.png" ) {
                image.src = "http://www.stockmarketinfolink.com/images/arrow_on.png";
            } else if( image.src == "http://www.stockmarketinfolink.com/images/arrow_on.png" ) {
                image.src = "http://www.stockmarketinfolink.com/images/arrow_off.png";
            }
        }
} 

