function showPostText(post_id) {
	if( document.getElementById( post_id ).style.display == 'none' ) 	{
		document.getElementById( post_id ).style.display = '';
	} else 	{
		document.getElementById( post_id ).style.display = 'none';
	}
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
/// exit page redirect ///
function gotoUrl(redUrl) {
   //alert(redUrl);
   sTargetURL = redUrl;
   doRedirect();
   /*(8alert(redUrl);*/
}
function doRedirect(){
    setTimeout( "timedRedirect()", 10*1000 );
}
function timedRedirect(){
    window.location.href = sTargetURL;
}
function timedRedirect()
{
    window.location.replace( sTargetURL );
} 
/// exit page redirect ///

/// radio btn ///
function toggle_radio(checkbox_id) {
		if(document.getElementById(checkbox_id).checked == true) {
			document.getElementById(checkbox_id).checked = false;
		} else {
			document.getElementById(checkbox_id).checked = true;
		}
	}
/// radio btn ///

/// preload images ///
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
/// preload images ///
/// nospam ///
function nospam (n, d){ // v1
		document.write ("<a href='mailto:"+n+"@"+d+"'>"+n+"@"+d+"</a>");
}
/// nospam ///

