function flip(name,src) {
    if (document.images)
        document.images[name].src = src;
}

/* Text Expander/collapser */
function expand(obj) {
	var el = document.getElementById(obj);

	if ( el.style.display != 'none' ) {
		el.style.display = 'none';
	} else {
		el.style.display = '';  }
}


var ticker="/include/sound/soundticker.wav"
function soundTicker(ticker){
	if (document.all && document.getElementById){
		document.getElementById("sound").src=""
		document.getElementById("sound").src=ticker
	}
}


	function comWindow(site) {

		//var xWidth = document.body.clientWidth;
		var xWidth = 450;
		var yHeight = 350;
		var x = window.screenLeft + document.body.clientWidth - xWidth + 40;
		var y = window.screenTop;

		if (site == null ) {  // gives this method the ability to call it with or wihout a url param
			site = "http://www.ecobondadhesives.com/"
		}

		var xWin = window.open(site, "x" , "width="+xWidth+  ",height="+yHeight+ ",top="+y+  ",left="+x + ", toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes");
		xWin.focus();
	}
