function setFlashHeight( intHeight ) {
	document.getElementById( 'flashcontainer' ).style.height = intHeight + "px";
	document.getElementById( 'flashobject' ).style.height = intHeight + "px";
}

function resetWindow() {
	window.scroll( 0, 0 );
}

function openKitcoPopup() {
	var strFeatures = "width=650," +
					  "height=420," +
					  "resizable=yes," +
					  "scrollbars=no," +
					  "toolbar=no," + 
					  "location=no," +
					  "directories=no," + 
					  "status=no," +
					  "menubar=no";
	window.open( "http://www.kitco.com/images/live/silver.gif", 
				 "Kitco", 
				 strFeatures );
}