İnterneti İyileştirme Çalışmaları Dizini - iic

IIC Dizin

iicdizin

Önemli

/**
 * Includes a Form with javascript
 * @param {Object} formId
 * @param {Object} initialHeight
 * @param {Object} iframeCode
 */
function FrameBuilder (formId, initialHeight, iframeCode){
    this.formId = formId;
    this.initialHeight = initialHeight;
    this.iframeCode = iframeCode;
    this.frame = null;
    this.timeInterval= 200;
    
    // initialize function for object
    this.init = function(){
        this.createFrame();
        this.addFrameContent(this.iframeCode);
    };
    
    // Create the frame
    this.createFrame = function(){
        var htmlCode = "<"+"iframe src="" allowtransparency="true" frameborder="0" name=""+this.formId+"" id=""+this.formId+"" style="width:100%; height:"+this.initialHeight+"px; border:none;" scrolling="no"></if"+"rame>";
        document.write(htmlCode);
        // also get the frame for future use.
        this.frame = document.getElementById(this.formId);
        // set the time on the on load event of the frame
        this.addEvent (this.frame, 'load', this.bindMethod(this.setTimer, this));
    };
    
    // add event function for different browsers
    this.addEvent = function( obj, type, fn ) {
        if ( obj.attachEvent ) {
            obj["e"+type+fn] = fn;
            obj[type+fn] = function() { obj["e"+type+fn]( window.event ); };
            obj.attachEvent( "on"+type, obj[type+fn] );
        }
        else{
            obj.addEventListener( type, fn, false );   
        }
    };
    
    this.addFrameContent = function (string){
        string = string.replace(new RegExp('src="[^"]*captcha.php"></scr'+'ipt>', 'gim'), 'src="http://api.recaptcha.net/js/recaptcha_ajax.js"></scr'+'ipt><'+'div id="recaptcha_div"><'+'/div>'+
                '<'+'style>#recaptcha_logo{ display:none;} #recaptcha_tagline{display:none;} #recaptcha_table{border:none !important;} .recaptchatable .recaptcha_image_cell, #recaptcha_table{ background-color:transparent !important; } <'+'/style>'+
                '<'+'script defer="defer"> window.onload = function(){ Recaptcha.create("6Ld9UAgAAAAAAMon8zjt30tEZiGQZ4IIuWXLt1ky", "recaptcha_div", {theme: "clean",tabindex: 0,callback: function (){'+
                'if (document.getElementById("uword")) { document.getElementById("uword").parentNode.removeChild(document.getElementById("uword")); } if (window["validate"] !== undefined) { if (document.getElementById("recaptcha_response_field")){ document.getElementById("recaptcha_response_field").onblur = function(){ validate(document.getElementById("recaptcha_response_field"), "Required"); } } } if (document.getElementById("recaptcha_response_field")){ document.getElementsByName("recaptcha_challenge_field")[0].setAttribute("name", "anum"); } if (document.getElementById("recaptcha_response_field")){ document.getElementsByName("recaptcha_response_field")[0].setAttribute("name", "qCap"); }}})'+
                ' }<'+'/script>');
        string = string.replace(/(type="text/javascript">)s+(validate("[^"]*");)/, '$1 jTime = setInterval(function(){if("validate" in window){$2clearTimeout(jTime);}}, 1000);');
        var frameDocument = (this.frame.contentWindow) ? this.frame.contentWindow : (this.frame.contentDocument.document) ? this.frame.contentDocument.document : this.frame.contentDocument;
        frameDocument.document.open();
        frameDocument.document.write(string);
        setTimeout( function(){frameDocument.document.close();},200);
    };
    
    this.setTimer = function(){
        var self = this;
        this.interval = setTimeout(function(){self.changeHeight();},this.timeInterval);
    };
    
    this.changeHeight = function (){
        var actualHeight = this.getBodyHeight();
        var currentHeight = this.getViewPortHeight();
        if(actualHeight === undefined){
            this.frame.style.height = "100%";
            this.frame.style.minHeight = "300px";
        }else if  (Math.abs(actualHeight - currentHeight) > 18){
            this.frame.style.height = (actualHeight)+"px";
        }
        this.setTimer();
    };
    
    this.bindMethod = function(method, scope) {
        return function() {
            method.apply(scope,arguments);
        };
    };
    
    this.getBodyHeight = function (){
        var height;
        var scrollHeight;
        var offsetHeight;
        try{  // Prevent IE from throw errors
            if (this.frame.contentWindow.document.height){
                
                height = this.frame.contentWindow.document.height;
                
            } else if (this.frame.contentWindow.document.body){
                
                if (this.frame.contentWindow.document.body.scrollHeight){
                    height = scrollHeight = this.frame.contentWindow.document.body.scrollHeight;
                }
                
                if (this.frame.contentWindow.document.body.offsetHeight){
                    height = offsetHeight = this.frame.contentWindow.document.body.offsetHeight;
                }
                
                if (scrollHeight && offsetHeight){
                    height = Math.max(scrollHeight, offsetHeight);
                }
            }            
        }catch(e){ }
        return height;
    };
    
    this.getViewPortHeight = function(){
        var height = 0;
        try{ // Prevent IE from throw errors
            if (this.frame.contentWindow.window.innerHeight)
            {
                height = this.frame.contentWindow.window.innerHeight - 18;
            }
            else if ((this.frame.contentWindow.document.documentElement)
                && (this.frame.contentWindow.document.documentElement.clientHeight))
            {
                height = this.frame.contentWindow.document.documentElement.clientHeight;
            }
            else if ((this.frame.contentWindow.document.body)
                && (this.frame.contentWindow.document.body.clientHeight))
            {
                height = this.frame.contentWindow.document.body.clientHeight;
            }            
        }catch(e){ }
        return height;
    };
    
    this.init();
}
FrameBuilder.get = [];
var i11583815124 = new FrameBuilder("11583815124" ,"", "<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">n<html><head>n<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />n<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />n<meta name="HandheldFriendly" content="true" />n<title>Form</title>n<link href="http://cdn.jotfor.ms/jotform.cssgz?3.1.110" rel="stylesheet" type="text/css" />n<style type="text/css">n    .form-label{n        width:150px !important;n    }n    .form-label-left{n        width:150px !important;n    }n    .form-line{n        padding:10px;n    }n    .form-label-right{n        width:150px !important;n    }n    body, html{n        margin:0;n        padding:0;n        background:#A5C6F2;n    }nn    .form-all{n        margin:0px auto;n        padding-top:0px;n        width:690px;n        background:#A5C6F2;n        color:Black !important;n        font-family:Verdana;n        font-size:12px;n    }n</style>nn<script src="http://cdn.jotfor.ms/jotform.jgz?3.1.110" type="text/javascript"></script>n<script type="text/javascript">n var jsTime = setInterval(function(){try{n   JotForm.jsForm = true;nn   JotForm.init(function(){n      JotForm.description('input_7', 'Bu sitede sitenizin durumu iu00e7in bir kullanu0131cu0131 adu0131 seu00e7melisiniz.');n      JotForm.description('input_8', 'Sitenizin durumunu u00f6u011frenmek iu00e7in du00fczgu00fcn bir u015fifre seu00e7melisiniz.');n      JotForm.description('input_2', 'Site adu0131 buna benzer olmalu0131du0131r:<br /><br /><br />http://www.orneksite.com');n      JotForm.description('input_3', 'Mu00fcmku00fcn olduu011funca ku0131sa ve net girmeniz gerekli (hem dmoz kayu0131t iu00e7in hem bizim iu00e7in)');n      JotForm.description('input_4', 'Bu alanda sizin sitenize ait tanu0131tu0131cu0131 bir au00e7u0131klama yapmanu0131z gerekiyor. 30 kelimeyi geu00e7memeli eu011fer geu00e7erse dmoz kayu0131t geu00e7ersiz olur.');n      JotForm.description('input_5', 'e-mail adresiniz au015fau011fu0131daki gibi olmalu0131du0131r:<br /><br /><br />ornek@ornek.com');n      JotForm.initCaptcha('input_6');n      $('input_6').hint('Type the above text');n      JotForm.description('input_6', 'Sizin bir insan veya bot olduu011funuzu anlamak iu00e7in bunu yapu0131yoruz. Biliyorsunuz son zamanlarda site u00e7u00f6kertmek bu yollarla oluyor. Lu00fctfen Anlayu0131u015f gu00f6sterin.');n      $('input_9').rating({stars:'5', inputClassName:'form-textbox', imagePath:'http://www.jotform.com/images/stars.png', cleanFirst:true, value:''});n      JotForm.description('input_9', 'Sitenin durumu hakku0131nda bize bilgi vermiu015f olursunuz, bu alanu0131 doldurmak zorunlu deu011fildir.');n      JotForm.alterTexts({"alphabetic":"Bu alan sadece harflerden oluu015fabilir.","alphanumeric":"Bu alan sadece harf ve numara iu00e7erebilir.","confirmClearForm":"Formu silmek istediu011finize emin misiniz?","email":"Geu00e7erli bir "e-mail" adresi girin.","incompleteFields":"Tamamlanmamu0131u015f gerekli alanlar var lu00fctfen onlaru0131 doldurun.","lessThan":"Skorunuz bundan du00fcu015fu00fck olmalu0131du0131r:","numeric":"Bu alan sadece rakam lardan oluu015fabilir.","pleaseWait":"Lu00fctfen bekleyin...","required":"Bu alan bou015f kalamaz.","uploadExtensions":"You can only upload following files:","uploadFilesize":"File size cannot be bigger than:"});n   });nn   clearInterval(jsTime);n }catch(e){}}, 1000);n</script>n</head>n<body>n<form class="jotform-form" action="http://www.jotform.com/submit.php" method="post" name="form_11583815124" id="11583815124" accept-charset="utf-8">n    <input type="hidden" name="formID" value="11583815124" />n    <div class="form-all">n        <ul class="form-section">n            <li id="cid_1" class="form-input-wide">n                <div class="form-header-group">n                    <h2 id="header_1" class="form-header">n                        IIC Dizin Site Ekleme Formu [v1.0 BETA]n                    </h2>n                </div>n            </li>n            <li class="form-line" id="id_7">n                <label class="form-label-left" id="label_7" for="input_7">n                    Kullanu0131cu0131 Adu0131:<span class="form-required">*</span>n                </label>n                <div id="cid_7" class="form-input">n                    <input type="text" class="form-textbox validate[required]" id="input_7" name="q7_kullaniciAdi" size="20" />n                </div>n            </li>n            <li class="form-line" id="id_8">n                <label class="form-label-left" id="label_8" for="input_8">n                    u015eifre:<span class="form-required">*</span>n                </label>n                <div id="cid_8" class="form-input">n                    <input type="password" class="form-textbox validate[required]" id="input_8" name="q8_sifre" size="20" />n                </div>n            </li>n            <li class="form-line" id="id_2">n                <label class="form-label-left" id="label_2" for="input_2">n                    Site Adu0131:<span class="form-required">*</span>n                </label>n                <div id="cid_2" class="form-input">n                    <input type="text" class="form-textbox validate[required]" id="input_2" name="q2_siteAdi" size="20" />n                </div>n            </li>n            <li class="form-line" id="id_3">n                <label class="form-label-left" id="label_3" for="input_3">n                    Sitenin Bau015flu0131u011fu0131:<span class="form-required">*</span>n                </label>n                <div id="cid_3" class="form-input">n                    <input type="text" class="form-textbox validate[required]" id="input_3" name="q3_siteninBasligi" size="60" />n                </div>n            </li>n            <li class="form-line" id="id_4">n                <label class="form-label-left" id="label_4" for="input_4">n                    Sitenizin Au00e7u0131klamasu0131:<span class="form-required">*</span>n                </label>n                <div id="cid_4" class="form-input">n                    <div class="form-textarea-limit"><span><textarea id="input_4" class="form-textarea validate[required]" name="q4_sitenizinAciklamasi4" cols="40" rows="6"></textarea>n                            <div class="form-textarea-limit-indicator"><span type="Words" limit="30" id="input_4-limit">0/30</span>n                            </div></span>n                    </div>n                </div>n            </li>n            <li class="form-line" id="id_5">n                <label class="form-label-left" id="label_5" for="input_5">n                    E-Mail Adresiniz:<span class="form-required">*</span>n                </label>n                <div id="cid_5" class="form-input">n                    <input type="text" class="form-textbox validate[required]" id="input_5" name="q5_emailAdresiniz" size="20" />n                </div>n            </li>n            <li class="form-line" id="id_6">n                <label class="form-label-left" id="label_6" for="input_6">n                    Lu00fctfen yandaki kodu girin:<span class="form-required">*</span>n                </label>n                <div id="cid_6" class="form-input">n                    <div class="form-captcha">n                        <label for="input_6"> <img alt="Captcha - Reload if it's not displayed" id="input_6_captcha" class="form-captcha-image" style="background:url(http://www.jotform.com/images/loader-big.gif) no-repeat center;" src="http://www.jotform.com/images/blank.gif" width="150" height="41" /> </label>n                        <div style="white-space:nowrap;">n                            <input type="text" id="input_6" name="captcha" style="width:130px;" />n                            <img src="http://www.jotform.com/images/reload.png" alt="Reload" align="absmiddle" style="cursor:pointer" onclick="JotForm.reloadCaptcha('input_6');" />n                            <input type="hidden" name="captcha_id" id="input_6_captcha_id" value="0">n                        </div>n                    </div>n                </div>n            </li>n            <li class="form-line" id="id_9">n                <label class="form-label-left" id="label_9" for="input_9"> Bu siteyi nasu0131l buldunuz? </label>n                <div id="cid_9" class="form-input">n                    <div id="input_9" name="q9_buSiteyi">n                        <select name="q9_buSiteyi">n                            <option value="1"> 1 </option>n                            <option value="2"> 2 </option>n                            <option value="3"> 3 </option>n                            <option value="4"> 4 </option>n                            <option value="5"> 5 </option>n                        </select>n                    </div>n                </div>n            </li>n            <li class="form-line" id="id_10">n                <div id="cid_10" class="form-input-wide">n                    <div id="text_10" class="form-html">n                        <hr />n                        <p>n                            Au015fau011fu0131daki button [tuu015f] a tu0131kladu0131ktan sonra sitenizin<span style="text-decoration: underline;">hit</span>n                            ini artacau011fu0131na emin olabilirsiniz.n                        </p>n                        <p>n                            IIC Dizin u015eunlaru0131 Yapar:n                        </p>n                        <p>n                            *Sitenizi d&uuml;nyanu0131n<span style="text-decoration: underline;">ortak arama motorlaru0131 dizini</span>n                            DMOZ ' a kayu0131t eder.n                        </p>n                        <p>n                            *Sitenizi neredeyse t&uuml;m<span style="text-decoration: underline;">arama motorlaru0131na</span>n                            kayu0131t eder.n                        </p>n                        <p>n                            *<span style="text-decoration: underline;">Arama motoru botlaru0131nu0131n</span>n                            sitenizi ziyaret etmesi i&ccedil;in ping g&ouml;nderir.n                        </p>n                        <p>n                            *iicdizin e kayu0131t olmuu015f olursunuz.n                        </p>n                        <p>n                            *Sitenizin durumunu iicdizin.tr.gg ile g&ouml;rm&uuml;u015f olursunuz.n                        </p>n                        <hr />n                    </div>n                </div>n            </li>n            <li class="form-line" id="id_11">n                <div id="cid_11" class="form-input-wide">n                    <div style="text-align:center" class="form-buttons-wrapper">n                        <button id="input_11" type="submit" class="form-submit-button">n                            Siteyi iicdizin' e kayu0131t ettir.n                        </button>n                    </div>n                </div>n            </li>n            <li style="display:none">n                Should be Empty:n                <input type="text" name="website" value="" />n            </li>n        </ul>n    </div>n    <input type="hidden" id="simple_spc" name="simple_spc" value="11583815124" />n    <script type="text/javascript">n        document.getElementById("si" + "mple" + "_spc").value = "11583815124-11583815124";n    </script>n</form></body>n</html>n");



Bugün 1 ziyaretçi (6 klik) kişi burdaydı!
Bu web sitesi ücretsiz olarak Bedava-Sitem.com ile oluşturulmuştur. Siz de kendi web sitenizi kurmak ister misiniz?
Ücretsiz kaydol