function flash(url,w,h){
 document.writeln('<!--[if IE]>');
 document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+w+'" height="'+h+'">');
 document.writeln('<param name="movie" value="'+url+'">');
 document.writeln('<param name="quality" value="high">');
 document.writeln('<param name="menu" value="false">');
 document.writeln('<param name="wmode" value="transparent">');
 document.writeln('<\/object>');
 document.writeln('<![endif]-->');
 document.writeln('<!--[if !IE]> <!-->');
 document.writeln('<object type="application/x-shockwave-flash" data="'+url+'" width="'+w+'" height="'+h+'">');
 document.writeln('<param name="quality" value="high">');
 document.writeln('<param name="controller" value="false">');
 document.writeln('<param name="autoplay" value="true">');
 document.writeln('<param name="menu" value="false">');
 document.writeln('<param name="wmode" value="transparent">');
 document.writeln('alt : <a href="'+url+'">'+url+'<\/a>');
 document.writeln('<\/object>');
 document.writeln('<!--<![endif]-->');      
}

function showHide(div1, div2){
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(div2).style.display = 'none';
		document.getElementById(div1).style.display = 'block';		
	} else {
		if (document.layers) { // Netscape 4
			document.div2.display = 'none';
			document.div1.display = 'block';
		} else { // IE 4
			document.all.div2.style.display = 'none';
			document.all.div1.style.display = 'block';
		}
	}
}


function show(ID){

	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(ID).style.visibility = 'visible';
	} else {
		if (document.layers) { // Netscape 4
			document.ID.visibility = 'visible';		
		} else { // IE 4
			document.all.ID.style.visibility = 'visible';		
		}
	}

}


function hide(ID){

	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(ID).style.visibility = 'hidden';
		if (document.layers) { // Netscape 4
			document.ID.visibility = 'hidden';
		} else { // IE 4
			document.all.ID.style.visibility = 'hidden';		
		}
	}

}


/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
} 
