// JavaScript Document
	var current=null;
	function mouse_over(ct)
	{
		current=ct.bgColor;
		ct.bgColor=	'#eaf1ff';
	}
	
	function mouse_out(ct)
	{
		ct.bgColor=current;
	}
	
	function tab(idx) { 	
		tmp = document.getElementById(idx).style;
			if( tmp.display == 'none') {
				tmp.display = 'block'; 

			}
		    else           {
				tmp.display = 'none' ;

			}
	}
	
	function view_div_detail(id) { 
					  
				 	if(id == 0){ document.getElementById('short').style.display = "none" ;
					             document.getElementById('detail').style.display = "block" ;
					}
					else{
							document.getElementById('short').style.display = "block" ;
					        document.getElementById('detail').style.display = "none" ;
					}  
					
		}
		
	function flash(url,w,h,bg,win,vars){
	var s=
	"<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+w+"' height='"+h+"' align='middle'>"+
	"<param name='movie' value='"+url+"' />"+
	"<param name='wmode' value='"+win+"' />"+
	"<param name='quality' value='high' />"+
	"<param name='FlashVars' value='"+vars+"' />"+
	"<param name='bgcolor' value='"+bg+"' />"+
	"<embed src='"+url+"' wmode='"+win+"' menu='false' quality='high' bgcolor='"+bg+"' width='"+w+"' height='"+h+"' align='middle' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />"+
	"</object>";
	document.write(s);
}
