/***********************************************
* Link Floatie 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
***********************************************/

var floattext=new Array()
floattext[0]='<p class="gray">The list includes, among others: Wandering Star, trans. by C. Dickson (Curbstone Press, 2004), Onitsha, trans. by Alison Anderson (University of Nebraska Press, 1997), The Prospector, trans. by Carol Marks (David R. Godine Publishers, 1993), The Giants, trans. by Simon Watson Taylor (Atheneum, 1975), and Fever, trans. by Daphne Woodward (Atheneum, 1966).</p><br><div align="right"><a href="javascript:hidefloatie()">close</a></div>'
floattext[1]='<p class="gray">&ldquo;<a href="http://www.diplomatie.gouv.fr/label_france/ENGLISH/LETTRES/clezio/page.html">Interview with Jean-Marie Le Clézio</a>&rdquo;, <em>Label France</em> 12/2001, no. 45.</p><br><div align="right"><a href="javascript:hidefloatie()">close</a></div>'
floattext[2]='<p class="gray">Michael Wilmington, movie critic for the <em>Chicago Tribune</em>, for example, calls Le Clézio an "urban mystic" who has "an almost mystical belief in the beauty of the everyday, the unnoticed". Michael Wilmington, <em>Chicago Tribune</em> (1997, September 12). "Mondo Gives Us a Gypsy Boy&rsquo;s View of the World".  See also Kevin Thomas, <em>Los Angeles Times</em> (1997, June 27) "Mondo" and other reviews at <a href="http://www.imdb.com">www.imdb.com</a>.</p><br><div align="right"><a href="javascript:hidefloatie()">close</a></div>'
floattext[3]='<p class="gray">Corry L. Cropper, <em>Neophilologus</em> (2005) 89: 41.</p><br><div align="right"><a href="javascript:hidefloatie()">close</a></div>'
floattext[4]='<p class="gray">&ldquo;...témoignent de l&rsquo;indigence spirituelle de pays trop riches, ou la vie s&rsquo;étouffe de plaisirs, de possessions.&rdquo; Jean Onimus, <em>Pour lire Le Clézio</em> (Paris: PUF, 1994) 131</p><br><div align="right"><a href="javascript:hidefloatie()">close</a></div>'
floattext[5]='<p class="gray">Sandra L. Beckett, &ldquo;Crossing the Borders: The  Children&rsquo;s Books of Michel Tournier and Jean-Marie Gustave Le Clézio&rdquo; <em>The Lion and the Unicorn</em> 21.1 (1998) 44.</p><br><div align="right"><a href="javascript:hidefloatie()">close</a></div>'
floattext[6]='<p class="gray">Jennifer R Waelti-Walters, <em>J.M.G. Le Clézio</em>. (Boston: Twayne Publishers, 1977) 15.</p><br><div align="right"><a href="javascript:hidefloatie()">close</a></div>'
var floatiewidth="275px" //default width of floatie in px
var floatieheight="" //default height of floatie in px. Set to "" to let floatie content dictate height.
var floatiebgcolor="white" //default bgcolor of floatie
var fadespeed=70 //speed of fade (5 or above). Smaller=faster.

var baseopacity=0
function slowhigh(which2){
imgobj=which2
browserdetect=which2.filters? "ie" : typeof which2.style.MozOpacity=="string"? "mozilla" : ""
instantset(baseopacity)
highlighting=setInterval("gradualfade(imgobj)",fadespeed)
}

function instantset(degree){
cleartimer()
if (browserdetect=="mozilla")
imgobj.style.MozOpacity=degree/100
else if (browserdetect=="ie")
imgobj.filters.alpha.opacity=degree
}

function cleartimer(){
if (window.highlighting) clearInterval(highlighting)
}

function gradualfade(cur2){
if (browserdetect=="mozilla" && cur2.style.MozOpacity<1)
cur2.style.MozOpacity=Math.min(parseFloat(cur2.style.MozOpacity)+0.1, 0.99)
else if (browserdetect=="ie" && cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=10
else if (window.highlighting)
clearInterval(highlighting)
}

function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function paramexists(what){
return(typeof what!="undefined" && what!="")
}

function showfloatie(thetext, e, optbgColor, optWidth, optHeight){
var dsocx=(window.pageXOffset)? pageXOffset: ietruebody().scrollLeft;
var dsocy=(window.pageYOffset)? pageYOffset : ietruebody().scrollTop;
var floatobj=document.getElementById("dhtmlfloatie")
floatobj.style.left="-900px"
floatobj.style.display="block"
floatobj.style.backgroundColor=paramexists(optbgColor)? optbgColor : floatiebgcolor
floatobj.style.width=paramexists(optWidth)? optWidth+"px" : floatiewidth
floatobj.style.height=paramexists(optHeight)? optHeight+"px" : floatieheight!=""? floatieheight : ""
floatobj.innerHTML=thetext
var floatWidth=floatobj.offsetWidth>0? floatobj.offsetWidth : floatobj.style.width
var floatHeight=floatobj.offsetHeight>0? floatobj.offsetHeight : floatobj.style.width
var winWidth=document.all&&!window.opera? ietruebody().clientWidth : window.innerWidth-20
var winHeight=document.all&&!window.opera? ietruebody().clientHeight : window.innerHeight
e=window.event? window.event : e
floatobj.style.left=dsocx+winWidth-floatWidth-5+"px"
if (e.clientX>winWidth-floatWidth && e.clientY+20>winHeight-floatHeight)
floatobj.style.top=dsocy+10+"px"
else
floatobj.style.top=dsocy+10+"px" //5 pixels from top of page
slowhigh(floatobj)
}

function hidefloatie(){
var floatobj=document.getElementById("dhtmlfloatie")
floatobj.style.display="none"
}