function show_pic(pic, text) {
document.getElementById('big_pic').src='images/'+pic+'.jpg';
document.all('pic_title').innerText=text;
event.srcElement.filters.alpha.opacity=30;
}

function play(clip, x, y) {
   document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+x+'" height="'+y+'">');
   document.write('<param name="wmode" value="transparent"/>');
   document.write('<param name="movie" value="'+clip+'.swf"/>');
   document.write('<param name="quality" value="best"/>');
   document.write('<param name="menu" value="false"/>');
   document.write('<embed src="'+clip+'.swf" width="'+x+'" height="'+y+'" type="application/x-shockwave-flash" quality="best" wmode="transparent" menu="false" pluginpage="http://www.macromedia.com/go/getflashplayer"></embed>');
   document.write('</object>');
}

function ShowHide(id) {

	if (document.getElementById) obj = document.getElementById(id);
	else if (document.all) obj = document.all[id];
	else if (document.layers) obj = document.layers[id];

	if (obj.style.display == 'none' || obj.style.display == ''){
		obj.style.display = 'block';
	}
	else {
		obj.style.display = 'none';
	}	
}
