<html>  <head>   <title>Alice Blanc - Fantasy Art pictures</title> <meta name="description" content="Alice Blanc - Fantasy Art pictures, French site (but easy for other languages) about Fantasy Art, Erotic Art, Digital Art, Comics, Photos, Manga, Anime ... Artists ressources"> <meta name="keywords" content="erotic art, digital art, fantasy art, manga, anime, video, free, royo, vallejo, elmore, olivia, sorayama, brom, magic, elfes, fairies"> <meta name="robots" content="all"> <meta name="language" content="FR"> <meta name="author" CONTENT="Rod - Loc Strullu - www.fantasya.net - webmaster@fantasya.net"> <META HTTP-EQUIV="imagetoolbar" CONTENT="no"> <SCRIPT language=JavaScript src="fantasya.js"></SCRIPT>  <style type="text/css"> .DEK { position:absolute; visibility:hidden; z-index:200} #divScroller1 {position:relative; overflow:hidden; z-index:9; width:190px; height:300px; clip:rect(0px, 190px, 300px, 0px); visbility:visible;} .dynPage {position:absolute; z-index:10; left:0px; top:0px; width:190px; visibility:hidden; padding-left:10px; font-family:arial,helvetica,sans-serif; font-size:10px; color:333333} #arrows {position:relative; z-index:11;} #links {position:relative; z-index:12; }  </style>  <SCRIPT>function NoError() { return true; } window.onerror=NoError;</SCRIPT>  <script language="JavaScript" type="text/javascript"> /**********************************************************************************    PageSlideFade  *   Copyright (C) 2001 <a href="/dhtmlcentral/michael_van_ouwerkerk.asp">Michael van Ouwerkerk</a> *   This script was released at DHTMLCentral.com *   Visit for more great scripts! *   This may be used and changed freely as long as this msg is intact! *   We will also appreciate any links you could give us. * *   Made by <a href="/dhtmlcentral/michael_van_ouwerkerk.asp">Michael van Ouwerkerk</a>  *********************************************************************************/ function lib_bwcheck(){ //Browsercheck (needed) 	this.ver=navigator.appVersion 	this.agent=navigator.userAgent 	this.dom=document.getElementById?1:0 	this.opera5=this.agent.indexOf("Opera 5")>-1 	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom && !this.opera5)?1:0;  	this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom && !this.opera5)?1:0; 	this.ie4=(document.all && !this.dom && !this.opera5)?1:0; 	this.ie=this.ie4||this.ie5||this.ie6 	this.mac=this.agent.indexOf("Mac")>-1 	this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0;  	this.ns4=(document.layers && !this.dom)?1:0; 	this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5) 	return this } var bw=new lib_bwcheck()  /*** variables to configure... ***/ var numScrollPages = 2         //Set the number of pages (layers) here. var transitionOut = 1;         //The 'out' effect... 0= no effect, 1= fade var transitionIn = 1;          //The 'in' effect... 0= no effect, 1= fade, 2= slide var slideAcceleration = 0.2;   //If you use the slide animation, set this somewhere between 0 and 1.  /*** Please note that there are no effects available in ns4 and ie4, or explorers on the Mac! ***/   if(document.layers){ //NS4 resize fix... 	scrX= innerWidth; scrY= innerHeight; 	onresize= function(){if(scrX!= innerWidth || scrY!= innerHeight){history.go(0)} } }  //object constructor... function scrollerobj(obj,nest){ 	nest = (!nest)?"":'document.'+nest+'.' 	this.elm = bw.ie4?document.all[obj]:bw.ns4?eval(nest+'document.'+obj):document.getElementById(obj) 	this.css = bw.ns4?this.elm:this.elm.style 	this.doc = bw.ns4?this.elm.document:document 	this.obj = obj+'scrollerobj'; eval(this.obj+'=this') 	this.x = (bw.ns4||bw.opera5)?this.css.left:this.elm.offsetLeft 	this.y = (bw.ns4||bw.opera5)?this.css.top:this.elm.offsetTop 	this.w = (bw.ie4||bw.ie5||bw.ie6||bw.ns6)?this.elm.offsetWidth:bw.ns4?this.elm.clip.width:bw.opera5?this.css.pixelWidth:0 	this.h = (bw.ie4||bw.ie5||bw.ie6||bw.ns6)?this.elm.offsetHeight:bw.ns4?this.elm.clip.height:bw.opera5?this.css.pixelHeight:0 }  //object methods... scrollerobj.prototype.moveTo = function(x,y){ 	if(x!=null){this.x=x; this.css.left=x} 	if(y!=null){this.y=y; this.css.top=y} } scrollerobj.prototype.moveBy = function(x,y){this.moveTo(this.x+x,this.y+y)} scrollerobj.prototype.hideIt = function(){this.css.visibility='hidden'} scrollerobj.prototype.showIt = function(){this.css.visibility='visible'}  /**************************************************************** scroll functions... ****************************************************************/ var scrollTimer = null; function scroll(step){ 	clearTimeout(scrollTimer); 	if ( !busy && (step<0&&activePage.y+activePage.h>scroller1.h || step>0&&activePage.y<0) ){ 		activePage.moveBy(0,step); 		scrollTimer = setTimeout('scroll('+step+')',40); 	} } function stopScroll(){ 	clearTimeout(scrollTimer); }  /**************************************************************** activating the correct layers... ****************************************************************/ var activePage = null; var busy = 0; function activate(num){ 	if (activePage!=pages[num] && !busy){ 		busy = 1; 		if (transitionOut==0 || !bw.opacity){ activePage.hideIt(); activateContinue(num); } 		else if (transitionOut==1) activePage.blend('hidden', 'activateContinue('+num+')'); 	} } function activateContinue(num){ 	busy = 1; 	activePage = pages[num]; 	activePage.moveTo(0,0); 	if (transitionIn==0 || !bw.opacity){ activePage.showIt(); busy=0; } 	else if (transitionIn==1) activePage.blend('visible', 'busy=0'); 	else if (transitionIn==2) activePage.slide(0, slideAcceleration, 40, 'busy=0'); }   /**************************************************************** Slide methods... ****************************************************************/ scrollerobj.prototype.slide = function(target, acceleration, time, fn){ 	this.slideFn= fn?fn:null; 	this.moveTo(0,scroller1.h); 	if (bw.ie4&&!bw.mac) this.css.filter = 'alpha(opacity=100)'; 	if (bw.ns6) this.css.MozOpacity = 1; 	this.showIt(); 	this.doSlide(target, acceleration, time); } scrollerobj.prototype.doSlide = function(target, acceleration, time){ 	this.step = Math.round(this.y*acceleration); 	if (this.step<1) this.step = 1; 	if (this.step>this.y) this.step = this.y; 	this.moveBy(0, -this.step); 	if (this.y>0) this.slideTim = setTimeout(this.obj+'.doSlide('+target+','+acceleration+','+time+')', time); 	else {	 		eval(this.slideFn); 		this.slideFn = null; 	} }   /**************************************************************** Opacity methods... ****************************************************************/ scrollerobj.prototype.blend= function(vis, fn){ 	if (bw.ie5||bw.ie6 && !bw.mac) { 		if (vis=='visible') this.css.filter= 'blendTrans(duration=0.9)'; 		else this.css.filter= 'blendTrans(duration=0.6)'; 		this.elm.onfilterchange = function(){ eval(fn); }; 		this.elm.filters.blendTrans.apply(); 		this.css.visibility= vis; 		this.elm.filters.blendTrans.play(); 	} 	else if (bw.ns6 || bw.ie&&!bw.mac){ 		this.css.visibility= 'visible'; 		vis=='visible' ? this.fadeTo(100, 7, 40, fn) : this.fadeTo(0, 9, 40, fn); 	} 	else { 		this.css.visibility= vis; 		eval(fn); 	} };  scrollerobj.prototype.op= 100; scrollerobj.prototype.opacityTim= null; scrollerobj.prototype.setOpacity= function(num){ 	this.css.filter= 'alpha(opacity='+num+')'; 	this.css.MozOpacity= num/100; 	this.op= num; } scrollerobj.prototype.fadeTo= function(target, step, time, fn){ 	clearTimeout(this.opacityTim); 	this.opacityFn= fn?fn:null; 	this.op = target==100 ? 0 : 100; 	this.fade(target, step, time); } scrollerobj.prototype.fade= function(target, step, time){ 	if (Math.abs(target-this.op)>step){ 		target>this.op? this.setOpacity(this.op+step):this.setOpacity(this.op-step); 		this.opacityTim= setTimeout(this.obj+'.fade('+target+','+step+','+time+')', time); 	} 	else { 		this.setOpacity(target); 		eval(this.opacityFn); 		this.opacityFn= null; 	} }   /************************************************************** Init function... **************************************************************/ var pageslidefadeLoaded = 0; function initPageSlideFade(){ 	scroller1 = new scrollerobj('divScroller1'); 	 	pages = new Array(); 	pages[0] = null; 	for (var i=1; i<=numScrollPages; i++){ 		pages[i] = new scrollerobj('dynPage'+i, 'divScroller1'); 		pages[i].moveTo(0,0); 	} 	bw.opacity = ( bw.ie && !bw.ie4 && navigator.userAgent.indexOf('Windows')>-1 ) || bw.ns6 	if (bw.ie5||bw.ie6 && !bw.mac) pages[1].css.filter= 'blendTrans(duration=0.6)'; // Loads the windows 9.x filters module. 	activateContinue(1);  	if (bw.ie) for(var i=0;i<document.links.length;i++) document.links[i].onfocus=document.links[i].blur; 	pageslidefadeLoaded = 1; } //if the browser is ok, the script is started onload.. if(bw.bw && !pageslidefadeLoaded) onload = initPageSlideFade; </script>  <script language=javascript> if (document.getElementById||document.all)    document.write('<LINK REL=STYLESHEET TYPE=text/css HREF=images/style.css>')  else if (document.layers)   document.write('<LINK REL=STYLESHEET TYPE=text/css HREF=images/style_ns4.css>')   document.close()    </script>    <SCRIPT LANGUAGE="JavaScript1.2" src="images/popup_chat.js"></SCRIPT> <script language="JavaScript"> 			<!-- 				var timeout = 2000; var ns4 = (document.layers)? true:false; var ie4 = (document.all)? true:false; var dom = (document.getElementById)? true:false;  				function setToAnchor(ID_Anchor,Name_Anchor,ID_Div) { 					var DivLeft = 0; var DivTop = 200; 					if (dom) { 						pos = document.getElementById(ID_Anchor); 						DivLeft = getLeft(pos); 						DivTop = getTop(pos); 						document.getElementById(ID_Div).style.left = DivLeft; 						document.getElementById(ID_Div).style.top = DivTop + 200; 					} else 						if (ie4) { 							pos = document.all[ID_Anchor]; 							DivLeft = getLeft(pos); 							DivTop = getTop(pos); 							document.all[ID_Div].style.posLeft = DivLeft; 							document.all[ID_Div].style.posTop = DivTop + 200; 						} else 							if (ns4) { 								pos = document.anchors[Name_Anchor]; 								DivLeft = pos.x; DivTop = pos.y; 								document.layers[ID_Div].pageX = DivLeft; 								document.layers[ID_Div].pageY = DivTop + 200; 							} 				} 				function getLeft(MyObject) { 					if (MyObject.offsetParent) 						return (MyObject.offsetLeft + getLeft(MyObject.offsetParent)); 					else 						return (MyObject.offsetLeft); 				}  				function getTop(MyObject) { 					if (MyObject.offsetParent) 						return (MyObject.offsetTop + getTop(MyObject.offsetParent) +200); 					else 						return (MyObject.offsetTop +200); 				} 				function affiche(koa) { 					if (koa) { 						if (ie4) { 							document.all.d_ibm.style.visibility = "visible"; 							window.setTimeout("affiche(0)", timeout); 						} else { 							document.d_ibm.visibility = "show"; 							window.setTimeout("affiche(0)", timeout); 						} 					} else { 						if (ie4) { 							document.all.d_ibm.style.visibility = "hidden"; 						} else { 							document.d_ibm.visibility = "hide"; 						} 					} 				} 			//--> </script> <script language="javascript" type = "text/javascript"> <!-- hide from none JavaScript Browsers function swapImage(sName,sImage) {   document.images[sName].src = sImage } // - stop hiding --> </script> </head>  <body bgcolor="#000000" link="#39597D" vlink="#39597D" alink="#39597D" marginheight=0 marginwidth=0 topmargin=0 leftmargin=0> <!-- Entete --> <div class="DivClass"> <H1>Alice Blanc - Fantasy Art pictures</H1>  </div>  <table border="0" width="760" cellspacing="0" cellpadding="0" align="center"> <tr> <td width="258" valign="top" background="images/haut.jpg">   <table border="0" width="258" cellspacing="0" cellpadding="0" height="38" background="images/blank.gif">     <tr>       <td width="25" background="images/blank.gif">&nbsp;</td>       <td width="265" valign="bottom" background="images/blank.gif"> &nbsp;  </td>     </tr>   </table> </td> <td width="478" background="images/topbar.jpg" valign="top">   <table border="0" width="100%" height="38" cellspacing="0" cellpadding="0">     <tr>       <td width="100%" valign="bottom" align="center" background="images/blank.gif">  <font class="MenuPrincipal"> <a href="http://www.fantasya.net" class="MenuPrincipal">&nbsp;HomePage </a>&nbsp;| <a href="phpBB/index.php" class="MenuPrincipal">&nbsp;Forum </a>&nbsp;| <a href="about.php" class="MenuPrincipal">&nbsp;About Fantasya </a>&nbsp;| <a href="banners.php" class="MenuPrincipal">&nbsp;Link Fantasya ? </a>&nbsp;| <a href="copyright.php" class="MenuPrincipal">&nbsp;Copyrights</a>&nbsp; </font><br>        </td>     </tr>   </table> </td> <td width="25"><img border="0" src="images/haut_droite.jpg" width="25" height="56"></td> </tr> </table>  <!-- Fin Entete -->  <!-- 2eme partie -->    <table border="0" width="760" cellspacing="0" cellpadding="0" align="center">     <tr>       <td width="123" valign="top" background="images/fondA.gif">         <table background="images/fondA.gif" border="0" width="100%" cellspacing="0" cellpadding="0">           <tr>             <td width="100%"><img border="0" src="images/menu_img.jpg" width="123" height="214"></td>           </tr>           <tr>             <td width="100%" background="images/menu_fond.jpg" valign="top">               <table border="0" width="108" cellspacing="0" cellpadding="0">                 <tr>                   <td width="15"></td>                   <td width="90" background="images/blank.gif">  &nbsp;<a href="images.php"><img src="images/bt_images.gif" width="89" height="45" border=0></a>              <table border="0" width="95%"> <tr><td width="100%" background="images/fond-menu_img1.jpg" style=background-repeat:no-repeat><A HREF="section_fantasy-art_1.htm"  	Class="LiensMenu1" onmouseover="return overlib('&nbsp;', WIDTH, 280, HEIGHT, 55, BACKGROUND, 'images/popupDHTML/popup_fantasy.gif', PADX, 80, 20, PADY, 0, 0)" onmouseout="return nd();">&nbsp; Fantasy Art</a></td></tr> <tr><td width="100%" background="images/fond-menu_img2.jpg" style=background-repeat:no-repeat><A HREF="section_erotic-art_2.htm"  	Class="LiensMenu1" onmouseover="return overlib('&nbsp;', WIDTH, 280, HEIGHT, 55, BACKGROUND, 'images/popupDHTML/popup_erotic.gif', PADX, 80, 20, PADY, 0, 0)" onmouseout="return nd();">&nbsp; Erotic Art</a></td></tr> <tr><td width="100%" background="images/fond-menu_img3.jpg" style=background-repeat:no-repeat><b><A HREF="section_photos_5.htm"  	Class="LiensMenu1" onmouseover="return overlib('&nbsp;', WIDTH, 280, HEIGHT, 55, BACKGROUND, 'images/popupDHTML/popup_photo.gif', PADX, 80, 20, PADY, 0, 0)" onmouseout="return nd();">&nbsp; Photos</a></td></tr> <tr><td width="100%" background="images/fond-menu_img4.jpg" style=background-repeat:no-repeat><A HREF="section_digital-art_4.htm"  	Class="LiensMenu1" onmouseover="return overlib('&nbsp;', WIDTH, 280, HEIGHT, 55, BACKGROUND, 'images/popupDHTML/popup_digital.gif', PADX, 80, 20, PADY, 0, 0)" onmouseout="return nd();">&nbsp; Digital / 3D</a></td></tr> <tr><td width="100%" background="images/fond-menu_img5.jpg" style=background-repeat:no-repeat><A HREF="section_manga_10.htm" 	Class="LiensMenu1" onmouseover="return overlib('&nbsp;', WIDTH, 280, HEIGHT, 55, BACKGROUND, 'images/popupDHTML/popup_manga.gif', PADX, 80, 20, PADY, 0, 0)" onmouseout="return nd();">&nbsp; Mangas</a></td></tr> </table>  <!-- <br> <img src="images/bt_textes.gif" width="89" height="29" border=0>                                      <table border="0" width="100%"> <tr><td width="100%" background="images/fond-menu.jpg"><A HREF="index.php" Class="LiensMenu1">&nbsp; Poemes</a></td></tr> <tr><td width="100%" background="images/fond-menu.jpg"><A HREF="index.php" Class="LiensMenu1">&nbsp; Nouvelles</a></td></tr> <tr><td width="100%" background="images/fond-menu.jpg"><A HREF="index.php" Class="LiensMenu1">&nbsp; Lgendes</a></td></tr> </table> --> <br> &nbsp;<img src="images/bt_ressources.gif" width="89" height="45" border="0">  <table border="0" width="95%"> <tr><td width="100%" background="images/fond-menu_img6.jpg" style=background-repeat:no-repeat><A HREF="http://www.fantasya.net/annuaire/" Class="LiensMenu1">&nbsp; Annuaire</a></td></tr> <tr><td width="100%" background="images/fond-menu_img7.jpg" style=background-repeat:no-repeat><A HREF="faq.php" Class="LiensMenu1">&nbsp; FAQ</a></td></tr> <tr><td width="100%" background="images/fond-menu_img8.jpg" style=background-repeat:no-repeat><A HREF="mailto:webmaster@fantasya.net" Class="LiensMenu1">&nbsp; Contacts</a></td></tr> <tr><td width="100%" background="images/fond-menu_img9.jpg" style=background-repeat:no-repeat><A HREF="chat.php" Class="LiensMenu1">&nbsp; Chat with us !</a></td></tr> <tr><td width="100%" background="images/fond-menu_img10.jpg" style=background-repeat:no-repeat><A HREF="join.php" Class="LiensMenu1">&nbsp; Join Fantasya</a></td></tr> </table>                    </td>                 </tr>               </table>             </td>           </tr>           <tr>             <td width="100%" height=100% valign="top" align="center">               <img border="0" src="images/fin_table_menu.gif" width="123" height="124">                                          </td>           </tr>         </table>       </td>               <!-- Contenu Pub + Partenaires -->       <td width="637" valign="top" colspan=3>         <table border="0" width="100%" cellspacing="0" cellpadding="0" bgcolor="#ffffff">           <tr>             <td width="1%" valign="top"><img border="0" src="images/droite2.jpg" width="135" height="214"></td>             <td width="98%">                  <table border="0" width="100%" cellpadding="0"> 		<tr> 	  	<td width="90%" valign="top" height=200 align=center> 			<table border="0" width="100%" cellspacing="0" cellpadding="0">  		   	<tr>    		     	<td width="100%"  valign=top align=center>   		      <script language="Javascript" src="http://www.fantasya.net/pub/banner.php3?ID=1&ZONE1=1"> </script>  <table width=450 cellpadding=3>     <tr>        <td valign=middle align=center colspan=4>             <font class=MenuPrincipal>Random Fantasy Art Gallery</font>        </td>     </tr>     <tr>        <td> <table width=100%><tr><td valign=middle align=center><a class=StyleArial1 href="galerie_kaido-rakaen_fantasy-art_1_444.htm"><img src="/galeries/444/thumbnails/TNkrehs_warrior.jpg" width=75 height=75 border=0><br>kAido Rakaen</a></td><td valign=middle align=center><a class=StyleArial1 href="galerie_sirenes_fantasy-art_1_40.htm"><img src="/galeries/40/thumbnails/TNmerm.jpg" width=75 height=75 border=0><br>Sirnes</a></td><td valign=middle align=center><a class=StyleArial1 href="galerie_didier-graffet_fantasy-art_1_161.htm"><img src="/galeries/161/thumbnails/TNarthur.jpg" width=75 height=75 border=0><br>Didier Graffet</a></td><td valign=middle align=center><a class=StyleArial1 href="galerie_william-li_fantasy-art_1_777.htm"><img src="/galeries/777/thumbnails/TNorianna.jpg" width=75 height=75 border=0><br>William Li</a></td></tr></table>       </td>        </tr>    <tr>    </tr> </table>  <div align=left> <table>     <tr>        <td valign=middle align=center colspan=4>             <font class="StyleArial1"> 		<a href=/>HomePage</a> 		 > <a href=images.php>Images</a> 		 > <a href="section_fantasy-art_1.htm">Fantasy Art</a> >  		<a href="galerie_alice-blanc_fantasy-art_1_797.htm">Alice Blanc</a> 	    </font>        </td>        </tr> </table> </div>                   		      <!-- Fin Contenu Intro Section -->  		                		      </td>  		  </tr>                                       </table>                    </td>               </tr>            </table>               </td>             <td width="1%" valign="top" background="images/bordure_droite.gif"><img border="0" src="images/bordure_droite.gif" width="24" height="214"></td>           </tr>         </table>  <!-- 3eme partie -->          <table border="0" width="100%" bgcolor="#FFFFFF" cellspacing="0" cellpadding="0">           <tr>             <td valign="top">                    <table border="0" width="100%" cellspacing="0" cellpadding="0" align="center">                   <tr>                     <td width="100%" valign="top" align=center>     <table border="0" width="100%" cellspacing="8" cellpadding="0"> <tr width=*>   <td width="100%"> <font class="StyleTitre1">Alice Blanc</font><br> <img border="0" src="images/point-s.gif" width="290" height="1"><br> </td>  </tr> </table>  <center>   <table width=100%>      <tr>         <td width="30" align=middle>             &nbsp;        </td>         <td width="100%" align=center  valign=middle> 	        </td>         <td width="30" align=right>            &nbsp;        </td>        </tr> </table>              <table border="0" cellspacing="1" cellpadding="2" width=100% align=center> <tr>     			<td align=center valign=top><a class=bordeauxTitre target=_blank href=javascript:void() onClick="javascript:window.open('image.php?imgsection=1&ref=797&id=16411&a=609&auth=O','','toolbar=0,location=0,directories=0,status=0,scrollbars=1,resizable=1,copyhistory=0,menuBar=0');return false;"> 			<img src='/galeries/797/thumbnails/TNdiablesse.jpg' border=0 width=75 height=75><br>Diablesse</a><br><FONT class=StyleArial1>218x586 - 15 ko</font><br><FONT class=StyleArial1G>5118 hits</font></td>     			<td align=center valign=top><a class=bordeauxTitre target=_blank href=javascript:void() onClick="javascript:window.open('image.php?imgsection=1&ref=797&id=16409&a=609&auth=O','','toolbar=0,location=0,directories=0,status=0,scrollbars=1,resizable=1,copyhistory=0,menuBar=0');return false;"> 			<img src='/galeries/797/thumbnails/TNelfe.jpg' border=0 width=75 height=75><br>Elfe</a><br><FONT class=StyleArial1>337x550 - 22 ko</font><br><FONT class=StyleArial1G>6906 hits</font></td>     			<td align=center valign=top><a class=bordeauxTitre target=_blank href=javascript:void() onClick="javascript:window.open('image.php?imgsection=1&ref=797&id=16410&a=609&auth=O','','toolbar=0,location=0,directories=0,status=0,scrollbars=1,resizable=1,copyhistory=0,menuBar=0');return false;"> 			<img src='/galeries/797/thumbnails/TNextraterrestre.jpg' border=0 width=75 height=75><br>Extraterrestre</a><br><FONT class=StyleArial1>329x493 - 40 ko</font><br><FONT class=StyleArial1G>3761 hits</font></td></tr><tr>     			<td align=center valign=top><a class=bordeauxTitre target=_blank href=javascript:void() onClick="javascript:window.open('image.php?imgsection=1&ref=797&id=16408&a=609&auth=O','','toolbar=0,location=0,directories=0,status=0,scrollbars=1,resizable=1,copyhistory=0,menuBar=0');return false;"> 			<img src='/galeries/797/thumbnails/TNrouge.jpg' border=0 width=75 height=75><br>Rouge</a><br><FONT class=StyleArial1>461x550 - 43 ko</font><br><FONT class=StyleArial1G>5352 hits</font></td></tr> </table> </center>   <!-- BOUTONS PRECEDENT, SUIVANT --> <table width=100%">      <tr> 	<td width="50%" align=left>            &nbsp;	</td> 	<td width="50%" align=right>            &nbsp;	</td>      </tr> </table>                             </td>                     <td width=195 valign="top" align=center>                                                <table border="0" width="94%" cellspacing="0" cellpadding="0">                             <tr>                               <td valign=top>                                                              <table>                                   <tr>                                     <td height=320 width=195 valign=top>  <img border="0" src="images/point.gif" width="10" height="10">  <div id=divScroller1><div id=dynPage1 class=dynPage>Prnom: Alice. <br>                        <br>Age: 18 ans. <br>                        <br>Ville: Grenoble, enfin juste  ct. <br>                        <br>Etudes: CPPG. ils ont finit par m'accepter! <br>                        <br>Passions: Dessin, BD, musique, informatique, planche  voile, snowboard. <br>                        <br>Instruments jous : Piano, guitare (euh...j'essaye quoi). <br>                        <br>Musique coute : The Offspring, Red Hot Chili Peppers, Muse, Radiohead, Saez, Yann Tiersen, Guano Apes, Blink 182, Mozart, Metallica, NOFX, Bob Marley, G. Gershwin, Feverish, Nirvana, Sewel, Rage Agaisnt the Machine, Manu Chao, Tool, Foo Fighters, Korn, Idlewild, Methods of Mayhem, Noir Dsir, Limp Bizkit, The Cranberries, The Beatles...  <br> <br> Films prfrs : Lon, Sleepy Hollow, Perfect Blue, Point Break. <br>  <br>Livres prfrs: Le seigneur des anneaux (J.R.R. Tolkien), L'cume des jours (Boris Vian), Les Thanatonautes (B. Werber). <br>  <br>Bouffe prfre: La Pastque. <br>  <br>Avenir envisag: Femme de milliardaire ou Informaticienne.</div><div id="dynPage2" class="dynPage"> <font class=bordeaux>Salon du livre Rouen</font><br> <font class=StyleArial1>12-03-2000</font><br> <font class=StyleArial1G> Ddicace des livres parus aux ditions Grund  </font><br><br> </div>   </div>        </td>     </tr>         <tr>           <td align=center>             <div id=arrows> <a href="#" onclick="return false;" onmouseover="scroll(9);" onmouseout="stopScroll();"><img src="images/up.gif" width="30" height="30" alt="" border="0" hspace=20></a> <a href="#" onclick="return false;" onmouseover="scroll(-9);" onmouseout="stopScroll();"><img src="images/dn.gif" width="30" height="30" alt="" border="0"></a>             </div>          </td>      </tr>               </table>  <br>  <!-- COMMENTAIRE PERSONNALISE <font class=bordeaux> la tu me laisses la possibilite de mettre tout ce ke je veux (ca correspond aux commentaires personnaliss) </font> -->                                </td>                             </tr>                           </table>                      </td>                   </tr>                 </table>  <table border="0" width="100%" cellspacing="8" cellpadding="0"> <tr>   <td width="100%"> <font class="StyleTitre1">Informations supplmentaires</font><br> <img border="0" src="images/point-s.gif" width="490" height="1"><br> </td>  </tr>  <tr>  </table>    <center>  <table border="0" width="95%" cellspacing="3" cellpadding="0"> <tr> <td>   	<font class="StyleArial1">Toutes les images appartiennent  Alice Blanc . 	Galerie ralise avec l'autorisation de l'auteur.  	Il est interdit de reproduire, diffuser son travail sans son accord.</font> 	<br> 	         <font class="StyleArial1">L'artiste autorise l'enregistrement de ses oeuvres pour une utilisation personnelle et non commerciale.</font><br>         <font class="StyleArial1">  </font></td> </tr> </table>  </center>  <br>                </td>             <td width="120" valign="top" background="images/menu_droite.gif">                                         <table border="0" width="100%" cellspacing="0" cellpadding="0">                 <tr>                   <td width="120" align=right><img border="0" src="images/decobulle2.jpg" width="119" height="127"></td>                 </tr>                 <tr>                   <td width="100%">  <div align=right>          <table width=115 bgcolor=#AA544F background="images/blank.gif" cellspacing=2 cellpadding=0>                             <tr>           <td onMouseOver="this.bgColor='#873E39';" onMouseOut="this.bgColor='#AA544F';">           <ILAYER><LAYER onMouseOver="this.bgColor='#873E39';" onMouseOut="this.bgColor='#AA544F';" WIDTH=100%>           &nbsp;<a href="#" onclick="javascript: return popupfantasya(650,600,'postcard.php?gaeref=797')" class=LiensMenu1 target=_blank>Send an E-card</a>           </LAYER></ILAYER></td></tr>                   <tr>           <td onMouseOver="this.bgColor='#873E39';" onMouseOut="this.bgColor='#AA544F';">           <ILAYER><LAYER onMouseOver="this.bgColor='#873E39';" onMouseOut="this.bgColor='#AA544F';" WIDTH=100%> 	  &nbsp;<a href="hits.php?cat=URL&ref=http://perso.wanadoo.fr/blanc/alice/dessins/fr" class=LiensMenu1 target=_blank>Official Website</a>           </LAYER></ILAYER></td></tr>                              <tr>           <td onMouseOver="this.bgColor='#873E39';" onMouseOut="this.bgColor='#AA544F';">                              <ILAYER><LAYER onMouseOver="this.bgColor='#873E39';" onMouseOut="this.bgColor='#AA544F';" WIDTH=100%>           &nbsp;<a href="#" onclick="return popupfantasya(575,575,'sendmail.php?imgsection=1&ref=797&artiste=609');" class=LiensMenu1>Contact E-mail</a>               </LAYER></ILAYER></td></tr>                                 <tr>           <td onMouseOver="this.bgColor='#873E39';" onMouseOut="this.bgColor='#AA544F';">                              <ILAYER><LAYER onMouseOver="this.bgColor='#873E39';" onMouseOut="this.bgColor='#AA544F';" WIDTH=100%>           &nbsp;<a href="javascript:void()" onclick="activate(1); return false;"  		onfocus="if(this.blur)this.blur()" class=LiensMenu1>Biography</a>                                                  </LAYER></ILAYER></td></tr>                   </table> </div>   <div align=center>  <img src="/images/artistes/photos2/photo_609.jpg" width="100" height="100" border="0"> <br>          <table width=100 cellspacing=0 cellpadding=0 height=100 background="images/blank.gif"> 	   <tr>               <td bgcolor=#AA544F>  <font class=LiensMenu1>Artist Ref               </td>            </tr>             <tr>               <td bgcolor=#C35E58 align=right>  <font class=LiensMenu1>609              </td>            </tr>             <tr>               <td bgcolor=#AA544F>  <font class=LiensMenu1>Created</a>               </td>            </tr>             <tr>               <td bgcolor=#C35E58 align=right>  <font class=LiensMenu1>2001-04-02</a>               </td>            </tr>                        <tr>               <td bgcolor=#AA544F>  <font class=LiensMenu1>Updated</a>               </td>            </tr>             <tr>               <td bgcolor=#C35E58 align=right>  <font class=LiensMenu1>2001-07-23</a>               </td>            </tr>               <tr>               <td bgcolor=#AA544F>  <font class=LiensMenu1>Nb Pics</a>               </td>            </tr>             <tr>               <td bgcolor=#C35E58 align=right>  <font class=LiensMenu1>4</a>               </td>            </tr>             <tr>               <td bgcolor=#AA544F>     <font class=LiensMenu1>Total Hits</a>               </td>            </tr>             <tr>               <td bgcolor=#C35E58 align=right>  <font class=LiensMenu1>33061</a>               </td>            </tr>              <tr>               <td bgcolor=#AA544F>  <font class=LiensMenu1>Authorization</a>               </td>            </tr>             <tr>               <td bgcolor=#C35E58 align=right>  <font class=LiensMenu1>YES</a>               </td>            </tr>   </table>     </div>                      </td>                 </tr>               </table>              </td>           </tr>         </table>       </td>     </tr>   </table>   <table border="0" width="760" cellspacing="0" cellpadding="0" align="center">   <tr>     <td width="20%" background="images/bas_milieu.gif"><img border="0" src="images/coin_gauche1.gif" width="123" height="34"><img border="0" src="images/coin_gauche2.gif" width="10" height="34"></td>     <td width="50%" background="images/bas_milieu.gif" valign="bottom"> &nbsp;     </td>     <td width="30%" align="right" background="images/bas_milieu.gif"><img border="0" src="images/coin_droit2.gif" width="10" height="34"><img border="0" src="images/coin_droite1.gif" width="119" height="34"></td>   </tr> </table>  <table border="0" width="760" cellspacing="0" cellpadding="0" align="center" bgcolor=#AA544F>   <tr>     <td align=center>         <a href="http://www.spiritworks-art.com/cgi-bin/top100/rankem.cgi?id=fantasya" target=_blank><img src="gfx/bann_eart.jpg" border="0" width="88" height="31" hspace="3"></a>         <a href="http://www.fantasya.net/hits.php?cat=URL&ref=http://erotic-artworks.com/cgi-bin/top100/rankem.cgi?id=rodart" target=_blank><img src="gfx/epaaban.gif" border="0" width="88" height="31" hspace="3"></a> <a href=http://www.newhentai.com/index.html?id=14041 target=_blank><img border=0 src=http://media.carpediem.fr/banners/fr/newhentai/88x31_02.gif width=88 height=31 hspace=3></a> <a href="http://www.fantasya.net/hits.php?cat=URL&ref=http://www.eskd.net" target=_blank><img src="gfx/esk.jpg" border="0" width="88" height="31" hspace="3"></a>      <a href="http://www.fantasya.net/hits.php?cat=URL&ref=http://www.ledruide.fr.st" target=_blank><img src="gfx/ledruide88x31.gif" border="0" width="88" height="31" hspace="3"></a>  <script language="JavaScript1.1"> <!-- hsh = new Date(); hsd = document; hsi = '<a href="http://www.xiti.com/xiti.asp?s=22889"' hsi += ' TARGET="_top"><img width="39" height="25" hspace=3 border=0 ' hsi += 'src="http://logv3.xiti.com/hit.xiti?s=22889' hsi += '&p=&hl=' + hsh.getHours() + 'x' + hsh.getMinutes() + 'x' + hsh.getSeconds(); if(parseFloat(navigator.appVersion)>=4) {Xiti_s=screen;hsi += '&r=' + Xiti_s.width + 'x' + Xiti_s.height + 'x' + Xiti_s.pixelDepth + 'x' + Xiti_s.colorDepth;} hsd.writeln(hsi + '&ref=' + hsd.referrer.replace('&', '$') + '" title="Mesurez votre audience"></a>'); //--> </script> <noscript> <a href="http://www.xiti.com/xiti.asp?s=22889" TARGET="_top"><img width="39" height="25" border=0 src="http://logv3.xiti.com/hit.xiti?s=22889&p=&" title="Mesurez votre audience"></a> </noscript> <A HREF=http://www.hit-parade.com/hp.asp?site=a248513 TARGET=_top><IMG SRC=http://loga.hit-parade.com/logohp1.gif?site=a248513 TITLE="Hit-Parade" WIDTH=77 HEIGHT=15 BORDER=0></A>  </td>       </tr> </table> <div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000;"></div> <SCRIPT LANGUAGE="JavaScript" src="jscripts/overlib.js"> </script> <div class="DivClass"> <a href="http://www.cote.azur.fr">Cte d'Azur</a><br> <H1>Alice Blanc - Fantasy Art pictures</H1> </div>  </BODY> </HTML> 
