<!--

function blockError(){return true;}

window.onerror = blockError;

// -->







<!--
function setArticleUrl()
{
	window.document.emailFriendForm.articleurl.value = window.document.referrer;
	window.document.emailFriendForm.recipientname.focus();
}

function land(ref, target)

{

lowtarget=target.toLowerCase();

if (lowtarget=="_self") {window.location=loc;}

else {if (lowtarget=="_top") {top.location=loc;}

else {if (lowtarget=="_blank") {window.open(loc);}

else {if (lowtarget=="_parent") {parent.location=loc;}

else {parent.frames[target].location=loc;};

}}}

}

function jump(menu)

{

ref=menu.choice.options[menu.choice.selectedIndex].value;

splitc=ref.lastIndexOf("*");

target="";

if (splitc!=-1)

{loc=ref.substring(0,splitc);

target=ref.substring(splitc+1,1000);}

else {loc=ref; target="_self";};

if (ref != "") {land(loc,target);}

}

//-->









// ******************************************************* 

// FLASH DETECT 

// All code by Ryan Parman, unless otherwise noted. 

// (c) 1997-2003, Ryan Parman 

// http://www.skyzyx.com 

// Distributed according to SkyGPL 2.1, http://www.skyzyx.com/license/ 

// *******************************************************/ 



var flash=new Object(); 



// Set some base values 

flash.installed=false; 

flash.version='0.0'; 



if (navigator.plugins && navigator.plugins.length) 

{ 

    for (x=0; x<navigator.plugins.length; x++) 

    { 

        if (navigator.plugins[x].name.indexOf('Shockwave Flash') != -1) 

        { 

            // Wierd flaw.  Windows version has "Shockwave Flash 6.0(space)(space)r79", while Mac/Linux versions have "Shockwave Flash 6.0(space)r79". 

            if (navigator.plugins[x].description.split('Shockwave Flash ')[1].indexOf('  r') != -1) flash.version=navigator.plugins[x].description.split('Shockwave Flash ')[1].split('  r').join('.'); 

            else flash.version=navigator.plugins[x].description.split('Shockwave Flash ')[1].split(' r').join('.'); 



            flash.installed=true; 

            break; 

        } 

    } 

} 

else if (window.ActiveXObject) 

{ 

    for (x=2; x<10; x++) 

    { 

        try 

        { 

            oFlash=eval("new ActiveXObject('ShockwaveFlash.ShockwaveFlash."+x+"');"); 

            if (oFlash) 

            { 

                flash.installed=true; 

                flash.version=x+'.0'; 

            } 

        } 

        catch(e) {} 

    } 

} 



flash.ver2=(flash.installed && parseInt(flash.version) >= 2) ? true:false; 

flash.ver3=(flash.installed && parseInt(flash.version) >= 3) ? true:false; 

flash.ver4=(flash.installed && parseInt(flash.version) >= 4) ? true:false; 

flash.ver5=(flash.installed && parseInt(flash.version) >= 5) ? true:false; 

flash.ver6=(flash.installed && parseInt(flash.version) >= 6) ? true:false; 

flash.ver7=(flash.installed && parseInt(flash.version) >= 7) ? true:false; 

flash.ver8=(flash.installed && parseInt(flash.version) >= 8) ? true:false; 

flash.ver9=(flash.installed && parseInt(flash.version) >= 9) ? true:false; 

