
Gillboss
Active Members-
Posts
280 -
Joined
-
Last visited
Everything posted by Gillboss
-
How to check if page load sucess AND the page is aviable? i try to do it: #include <IE.au3> $oIE = _IECreate ("") Sleep(1000) _IENavigate ($oIE, "http://www.google.com", 0) $asd = _IELoadWait($oIE) MsgBox(0,"",$asd) _IENavigate ($oIE, "http://www.fdsasdgadfhadfh.com", 0) $asd = _IELoadWait($oIE) MsgBox(0,"",$asd) its return same value, even www.fdsasdgadfhadfh.com is not existing any?
-
i still dont understand what is from-root path from DebugBar..
-
its the source before FORM <HTML lang=en version=2.2.1 xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:jsp = "http://java.sun.com/JSP/Page" xmlns:c = "http://java.sun.com/jsp/jstl/core" xmlns:decorator = "http://www.opensymphony.com/sitemesh/decorator" xmlns:page = "http://www.opensymphony.com/sitemesh/page"><HEAD><TITLE>ijji - Where Gamers Unite!</TITLE> <META http-equiv=Content-Type content="text/html; charset=UTF-8"> <META http-equiv=Cache-Control content=No-Cache> <META http-equiv=Pragma content=No-Cache><LINK href="http://images.ijjimax.com/v2/common/favicon.ico" type=image/x-icon rel="shortcut icon"><LINK href="http://images.ijjimax.com/common/styles/service/arcade/common_arcade.css" type=text/css rel=stylesheet><LINK href="http://images.ijjimax.com/common/styles/v3/global_game_header.css" type=text/css rel=stylesheet> <script type=text/javascript> // common ////////////////////////////////////////////////////////////////////// // js.ijji.cookie var domainName = "ijji.com"; var serviceDomainName = document.domain; // session cookie prefix. Cookies with this prefix will be deleted when logout var sessionCookiePrefix = "NHN_S_"; function getFixDomain() { var s = document.domain; if ( s.indexOf(domainName) >= 0 ) { return domainName; } else { var n = s.indexOf("."); var test = s.split("."); if (test.length > 2) { return s.substring(n + 1, s.length); }else{ return s; } } } function getServiceDomain(name) { if ( (location.host).indexOf("dev") == 0 || (location.host).indexOf("alpha") == 0 ) { return "alpha-" + name; } if ( (location.host).indexOf("beta") == 0 ) { return "beta-" + name; } return name; } function setDomain() { document.domain = getFixDomain(); } function getCookie(name) { var aRec; var aCook = document.cookie.split("; "); for (var i=0; i<aCook.length; i++) { aRec = aCook[i].split("="); if (name.toLowerCase()==unescape(aRec[0].toLowerCase())) return aRec[1]; } return ""; } function setCookie(name, value) { var argv = setCookie.arguments; var argc = setCookie.arguments.length; var expires = (2 < argc) ? argv[2] : null; var path = (3 < argc) ? argv[3] : null; var domain = (4 < argc) ? argv[4] : null; var secure = (5 < argc) ? argv[5] : false; document.cookie = name + "=" + escape (value) + ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + ((path == null) ? "" : ("; path=" + path)) + ((domain == null) ? "" : ("; domain=" + getFixDomain())) + ((secure == true) ? "; secure" : ""); } function deleteCookie(name) { document.cookie = name + "=dumy; expires=Fri, 31 Dec 1999 23:59:59 GMT;"; } ////////////////////////////////////////////////////////////////////// // js.ijji.string function defaultIfEmpty(obj, value) { if ( obj == null || obj == "" || obj == undefined || obj == "undefined") return value; if (typeof value == "boolean" || typeof value == "number") return eval(obj); return obj; } function isCp1252CharCode(charCode){ var cp1252ExtCharCodes = new Array(338,339,352,353,376,381,382,402,710,732,8211,8212,8216,8217,8218,8220,8221,8222,8224,8225,8226 ,8 230,8240,8249,8250,8364,8482); if(charCode > 0 && charCode <= 0xFF) return true; //Latin1 for(var i=0; i < cp1252ExtCharCodes.length; i++) if(cp1252ExtCharCodes[i] == charCode) return true; return false; } function getInvalidCp1252Chars(str) { var arr = new Array(); for(var i=0;i<str.length;i++) if(!isCp1252CharCode(str.charCodeAt(i))) arr.push( str.charAt(i) ); if(arr.length == 0) return null; return arr; } function isCp1252Str(str) { for(var i=0;i<str.length;i++) if(!isCp1252CharCode(str.charCodeAt(i))) return false; return true; } ////////////////////////////////////////////////////////////////////// // js.ijji.browser.agent function isXPSP2(){ if (!isMSIE() ) return false; var agent = window.navigator.userAgent; if(agent.indexOf("SV1")) return true; if(isXP() && agent.indexOf("MSIE 7.") !=-1) return true; // todo : would be removed, if prepare to support Vista if (isVista()) return true; return false; } function isXP(){ if (!isMSIE() ) return false; var agent = window.navigator.userAgent; if(agent.indexOf("NT 5.1") !=-1) return true; //SP1 return false; } function isVista(){ if (!isMSIE() ) return false; var agent = window.navigator.userAgent; if(agent.indexOf("NT 6.") !=-1) return true; return false; } function isMSIE() { var agent = window.navigator.userAgent; if (agent.indexOf("MSIE") !=-1 ) return true; else return false; } function isFirefox() { var agent = window.navigator.userAgent; if (agent.toUpperCase().indexOf("FIREFOX") !=-1 ) return true; else return false; } function isGameSupportedBrowser() { return isMSIE() || isFirefox(); } function isXPComEnabled(){ if (isMSIE() ) return false; var agent = window.navigator.userAgent; if(agent.toUpperCase().indexOf("GECKO") !=-1) return true; //FireFox, Netscape if(agent.toUpperCase().indexOf("OPERA") !=-1) return true; //Opera return false; } function isWindows(){ var agent = window.navigator.userAgent; if(agent.toUpperCase().indexOf("WINDOWS") !=-1) return true; return false; } ////////////////////////////////////////////////////////////////////// // js.ijji.activex function viewActiveObject(html){ document.write(html); } ////////////////////////////////////////////////////////////////////// // js.ijji.popup function openSimpleFrameWindow(url, target, width, height) { return window.open(url, target, "scrollbars=no,statusbar=no,toolbar=no, menu=no,width=" + width + ",height=" + height); } ////////////////////////////////////////////////////////////////////// // js.ijji.html function addEvent(ev, el) { if(ev.substring(0,2) == "on") ev = ev.substring(2); if (document.addEventListener) { document.addEventListener(ev, el, false); } else { attachEvent("on" + ev, el); } } function removeEvent(ev, el) { if(ev.substring(0,2) == "on") ev = ev.substring(2); if (document.addEventListener) { document.removeEventListener(ev, el, false); } else { detachEvent("on" + ev, el); } } function favor() { window.external.AddFavorite('http://www.ijji.com', 'ijji - Where Gamers Unite!'); } ////////////////////////////////////////////////////////////////////// // js.ijji.prototype String.prototype.trim = function(){ return this.replace(/(^\s*)|(\s*$)/g, ""); } String.prototype.cut = function(len, tail) { var str = this; var l = 0; for (var i=0; i<str.length; i++) { l += (str.charCodeAt(i) > 128) ? 2 : 1; if (l > len) return str.substring(0,i) + tail; } return str; } ////////////////////////////////////////////////////////////////////// // js.ijji.nds var __loaded = false; function runObject(objectid, callback) { var obj = document.getElementById(objectid); if( obj != null ) { __loaded = true; setTimeout(callback,1000); }else{ setTimeout(runObject,1000); } } var __ndsFrame; var __ndsURL = "http://lcs." + getFixDomain(); var __ndsURL_SSL_DEV = "https://dev-billing." + getFixDomain(); var __ndsURL_SSL_ALPHA = "https://alpha-billing." + getFixDomain(); var __ndsURL_SSL_BETA = "https://beta-billing." + getFixDomain(); var __ndsURL_SSL_RELEASE = "https://billing." + getFixDomain(); var __nds_SSL = false; if (location.href.indexOf('https://dev-') == 0) { __ndsURL_SSL = __ndsURL_SSL_DEV; } else if (location.href.indexOf('https://alpha-') == 0) { __ndsURL_SSL = __ndsURL_SSL_ALPHA; } else if (location.href.indexOf('https://beta-') == 0) { __ndsURL_SSL = __ndsURL_SSL_BETA; } else { __ndsURL_SSL = __ndsURL_SSL_RELEASE; } if ( location.href.indexOf('https') == 0 ) { __nds_SSL = true; } function setPageId() { if ( typeof(__ndsFrame)=="undefined" ) { if ( __nds_SSL ) { var s = "<iframe name='__ndsIframe' src='/common/blank.html' width=0 height=0 frameborder=0 style='display:none;'></iframe>"; } else { var s = "<iframe name='__ndsIframe' width=0 height=0 frameborder=0 style='display:none;'></iframe>"; } __ndsFrame = "set"; document.write (s); setTimeout("__ndsLoadMain()",500); } } function __ndsLoadMain() { if ( typeof(__ndsIframe)=="object" ) { if ( location.href.indexOf('https://') == 0 ) { __ndsIframe.location.href = __ndsURL_SSL + "/nds/u{" + getNDSI18NAddedURL(document.URL) + "}"; } else { __ndsIframe.location.href = __ndsURL + "/u{" + getNDSI18NAddedURL(document.URL) + "}"; } } else { setTimeout("__ndsLoadMain()",500); } } ////////////////////////////////////////////////////////////////////// // js.ijji.misc function toggleDisplay(id) { if ( document.getElementById(id).style.display == 'none' ) { document.getElementById(id).style.display = ""; } else { document.getElementById(id).style.display = 'none'; } } function parseCurrency(str) { var temp = new String(str); var SIZE = 3; var strings = new Array(); if ( temp.length <= SIZE ) return temp; for (var i = 0; i < temp.length / SIZE; i++ ) { if ( temp.length < (i + 1) * SIZE) { strings[strings.length] = temp.substr(0, temp.length - i * SIZE ); } else { strings[strings.length] = temp.substr( temp.length - (i + 1) * SIZE, SIZE); } } var result = ""; for (var i = 0; i < strings.length; i++ ) { if ( result == "" ) result = strings[i]; else result = strings[i] + "," + result; } return result; } ////////////////////////////////////////////////////////////////////// // play live function goPlay(gameId, subId) { //alert(__mouse_pos_x + ',' + __mouse_pos_y); var startFrame = document.getElementById("startFrame"); if (startFrame == null) { var obj = document.createElement('iframe'); obj.setAttribute('id','startFrame'); obj.style.border = '0px'; obj.style.width = '0px'; obj.style.height = '0px'; obj.style.visibility = 'hidden'; startFrame = document.body.appendChild(obj); } startFrame.src="/common/prelaunch.nhn?gameId=" + gameId + "&subId=" + subId + "&posx=" + __mouse_pos_x + "&posy=" + __mouse_pos_y; } function showDownloadPopup(flag) { var alertLayer = document.getElementById('alertLayer'); if (flag) { alertLayer.style.display = 'block'; } else { alertLayer.style.display = 'none'; } } function startDownloadAutoInstaller() { showDownloadPopup(false); location.href = 'http://cdn.ijjimax.com/nhnusa/dist/hansetup/ijjiAutoInstaller.exe'; } // AD function showAd(categories, width, height) { var size = 2; var seed = Math.floor(Math.random() * size); if (seed == 0) { getAdExpo9(categories, width, height); } else { getAdExpo9(categories, width, height); } } function getAdExpo9(categories, width, height) { var e9 = new expo9_ad(); e9.addBlockingCategories=categories; e9.size = width + "x" + height; e9.showAd(); } // CRM 2 Functions var _crmPopup = null; function hasCrmAlert() { var checkURL = "services.ijji.com/crm/popupcheck"; if ( (location.host).indexOf("dev") == 0 || (location.host).indexOf("alpha") == 0 ) { checkURL = "alpha-" + checkURL; } else if ( (location.host).indexOf("beta") == 0 ) { checkURL = "beta-" + checkURL; } checkURL = "http://" + checkURL; ajaxHttpRequest(checkURL, "showCrmLayer"); } function showCrmLayer(json) { var crmLayer = document.getElementById("crm_layer"); if ( !crmLayer || !json || json.popupyn != "Y") { return; } if ( json.popuptype == "POPUP" ) { popupCrm(json.popupURL); return; } var crmP = document.createElement("P"); crmP.className = "txt"; crmP.appendChild(document.createTextNode(json.message)); crmP.appendChild(document.createElement("BR")); var crmA = document.createElement("A"); crmA.appendChild(document.createTextNode("Click for details!")); crmA.href = "java script:popupCrm('"+json.popupURL+"');"; crmP.appendChild(crmA); crmLayer.appendChild(crmP); crmLayer.style.display = "block"; } function popupCrm(url) { if ( !url ) { return ; } _crmPopup = window.open(url, 'CRM2', 'fullscreen=no,titlebar=no,toolbar=no,directories=no,status=no,menubar=no,width=200,height=200'); document.getElementById("crm_layer").style.display = "none"; } function closeCrmLayer() { document.getElementById("crm_layer").style.display = "none"; } ////////////////////////////////////////////////////////////////////// // js.ijji.i18n var __userSelectedLocale = "i18n_userSelectedLocale"; var __determinedLanguage = "i18n_lang"; var __defaultLanguageCode = "en"; var __ndsLangParam = "_lang"; var __langOrder = new Array("en","es"); function getLangCode() { var langCode = getCookie(__determinedLanguage); if ( langCode == null || langCode.length == 0 ) { return __defaultLanguageCode; } return langCode; } function getLangNum() { var code = getLangCode(); for ( var i = 0 ; i < __langOrder.length ; i++ ) { if ( code == __langOrder[i] ) return i; } return 0; } function setLangCode(langCode) { var expires = 1000 * 60 * 60 * 24 * 365 * 10; var expires_date = new Date( (new Date()).getTime() + (expires) ); setCookie(__userSelectedLocale, langCode, expires_date, null, domainName); } function setLangCodeNReload(langCode) { setLangCode(langCode); location.reload(true); } function getNDSI18NAddedURL(url) { if ( url == null || url.length <= 0 ) return url; // check service not in spanish var re = new Array( /^(http|https):\/\/[^\.]*luminary\.ijji\.com/, /^(http|https):\/\/[^\.]*rohan\.ijji\.com/, /^(http|https):\/\/[^\.]*channel\.ijji\.com/, /^(http|https):\/\/[^\.]*game\.ijji\.com/, /^(http|https):\/\/[^\.]*flash\.ijji\.com/, /^(http|https):\/\/[^\.]*miningboy\.ijji\.com/, /^(http|https):\/\/[^\.]*bbs\.ijji\.com/ ); for (var i = 0 ; i < re.length ; i++ ) { if ( re[i].test(url) ) { return url; } } url = url.replace(/[\?&]+$/,""); var n = url.indexOf("?"); if ( n > 0 ) { return url + "&" + __ndsLangParam + "=" + getLangCode(); } return url + "?" + __ndsLangParam + "=" + getLangCode(); } function ialert() { var num = getLangNum(); var msg = ""; if ( num < arguments.length ) { msg = arguments[num]; } else if ( arguments.length >= 1 ) { msg = arguments[0]; } alert(msg); } ////////////////////////////////////////////////////////////////////// // ui function findAbsPos(obj) { var curLeft = 0; var curTop = 0; var n = 0; // exit within 100 loops if (obj.offsetParent) { do { curLeft += obj.offsetLeft; curTop += obj.offsetTop; n++; obj = obj.offsetParent; } while ( obj && n < 100 ); } return new Array(curLeft, curTop); } // Premier Coupon var cookieShowPrmrCoupon; var cookieUsePrmrCoupon; function hasPremierCoupon(service, useruid, ctype, pcode) { if (typeof(service) == 'undefined') service = ''; if (typeof(useruid) == 'undefined') useruid = ''; if (typeof(ctype) == 'undefined') ctype = ''; if (typeof(pcode) == 'undefined') pcode = ''; cookieShowPrmrCoupon = "showPremierCoupon"+useruid+service; cookieUsePrmrCoupon = "usePremierCoupon"+useruid; var prmrCoupon = getCookie(cookieShowPrmrCoupon); if ( prmrCoupon == null || prmrCoupon.length == 0 ) { var checkURL = "premier.ijji.com/coupon/chkCoupon.nhn"; if ( (location.host).indexOf("dev") == 0 || (location.host).indexOf("alpha") == 0 ) { checkURL = "alpha-" + checkURL; } else if ( (location.host).indexOf("beta") == 0 ) { checkURL = "beta-" + checkURL; } checkURL = "http://" + checkURL + "?ctype="+ctype+"&pcode="+pcode; ajaxHttpRequest(checkURL, "showPremierCouponLayer"); } } function showPremierCouponLayer(json) { var prmrLayer = document.getElementById("prmrCouponLayer"); if ( !prmrLayer || !json || json.rtn != "0") { // closePremierCouponLayer(); return; } var prmrPkg = document.getElementById("ajax_pcoupon"); if(prmrPkg) { prmrPkg.innerHTML= json.pname; } var pgcoin = document.getElementById("ajax_pcoupon_pgcoin"); if(pgcoin) { pgcoin.innerHTML= json.pgcoin; } prmrLayer.style.display = "block"; } function closePremierCouponLayer() { document.getElementById('prmrCouponLayer').style.display = "none"; // set cookie var validDays=1; var exp=new Date(); exp.setDate(exp.getDate()+validDays); document.cookie = cookieShowPrmrCoupon+"=N; path=/; domain="+getFixDomain()+"; expires="+exp.toGMTString()+"; "; } function usePremierCoupon() { // set cookie var validDays=1; var exp=new Date(); exp.setDate(exp.getDate()+validDays); document.cookie = cookieUsePrmrCoupon+"=Y; path=/; domain="+getFixDomain()+"; expires="+exp.toGMTString()+"; "; // redirect to registration page var prmrReg = "premier.ijji.com/premieroptions/ccart.nhn"; if ( (location.host).indexOf("dev") == 0 || (location.host).indexOf("alpha") == 0 ) { prmrReg = "alpha-" + prmrReg; } else if ( (location.host).indexOf("beta") == 0 ) { prmrReg = "beta-" + prmrReg; } prmrReg = "http://" + prmrReg; document.location.href=prmrReg; } //////////////////////////////////////////////////////////////////////////////// //Codes related with Window Event //mouse position var __mouse_pos_x = 0; var __mouse_pos_y = 0; document.onmousemove=mtrack; function mtrack(e) { var scrolledValue = getScrollXY(); if ( typeof(window.screenLeft) == 'number' ) { __mouse_pos_x = event.screenX - window.screenLeft + scrolledValue[0]; __mouse_pos_y = event.screenY - window.screenTop + scrolledValue[1]; } else { if (typeof(event) != 'undefined'){ __mouse_pos_x = event.clientX; __mouse_pos_y = event.clientY; } else { __mouse_pos_x = e.pageX; __mouse_pos_y = e.pageY; } } } function getScrollXY() { var scrOfX = 0, scrOfY = 0; if( typeof( window.pageYOffset ) == 'number' ) { //Netscape compliant scrOfY = window.pageYOffset; scrOfX = window.pageXOffset; } else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) { //DOM compliant scrOfY = document.body.scrollTop; scrOfX = document.body.scrollLeft; } else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) { //IE6 standards compliant mode scrOfY = document.documentElement.scrollTop; scrOfX = document.documentElement.scrollLeft; } return [ scrOfX, scrOfY ]; } //Codes related with Window Event //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// // automatic initializers setDomain(); setPageId(); </SCRIPT> </HEAD> <BODY><IFRAME style="DISPLAY: none" name=__ndsIframe src="" frameBorder=0 width=0 height=0></IFRAME> <script type=text/javascript> // json_ajax var JSONAjax=new Object(); JSONAjax.READY_STATE_UNINITIALIZE=0; JSONAjax.READY_STATE_LOADING=1; JSONAjax.READY_STATE_LOADED=2; JSONAjax.READY_STATE_INTERACTIVE=3; JSONAjax.READY_STATE_COMPLETE=4; JSONAjax.SERIALNO = 0; JSONAjax.ContentLoader=function(url,onload,isForcedIFrame, onerror, isHTML){ this.url = url; this.req=null; this.onload= onload; this.onerror=(onerror)? onerror : this.defaultError; this.IFrameObj = null; this.isForcedIFrame=(isForcedIFrame)? true : false; this.isHTML= (isHTML)? true : false; } JSONAjax.ContentLoader.prototype={ loadContent:function(bAfterComplete){ var targetHost = this.getHost(this.url); var thisHost = this.getHost(document.location.href); if(!this.isForcedIFrame && (targetHost == null || targetHost == thisHost)) { this.loadAjaxContent(); //same server } else { //different server if(document.readyState && document.readyState != 'complete' && bAfterComplete != 'undefined' && bAfterComplete == true ) { //ie and delayed var loader = this; attachEvent("onload", function(){loader.loadIFrameContent();}); } else { this.loadIFrameContent(); } } }, loadContentAfterComplete:function(){ this.loadContent(true); }, loadAjaxContent:function(){ if(window.XMLHttpRequest) { this.req = new XMLHttpRequest(); } else if(window.ActiveXObject) { this.req=new ActiveXObject("Microsoft.XMLHTTP"); } if(this.req){ try{ var loader = this; this.req.onreadystatechange=function(){ loader.onReadyState(); }; this.req.open('GET', this.url, true); this.req.send(null); } catch ( err ) { this.onerror(); } } }, loadIFrameContent:function(){ //alert('ready:' + document.readyState); var iframeURL = this.url + ((!this.url.match("\\?"))? "?" : "&") + "callback=" + this.onload; if (!this.IFrameObj) { try { var iframeID = 'JSONIFrame' + JSONAjax.SERIALNO ++; if(document.readyState) { // IE var iframeHTML='<iframe id="' + iframeID + '" style="'; iframeHTML+='border:0px;'; iframeHTML+='width:0px;'; iframeHTML+='height:0px;'; iframeHTML+='"></iframe>'; if(document.readyState == 'complete') { document.body.insertAdjacentHTML("afterEnd", iframeHTML); } else { document.write(iframeHTML); } this.IFrameObj = document.getElementById(iframeID); } else { // for firefox var tempIFrame=document.createElement('iframe'); tempIFrame.setAttribute('id', iframeID); tempIFrame.style.border='0px'; tempIFrame.style.width='0px'; tempIFrame.style.height='0px'; this.IFrameObj = document.body.appendChild(tempIFrame); } } catch(exception) { alert('json_ajax.js: debugging' + exception); } } if( this.IFrameObj ) this.IFrameObj.src = iframeURL; }, onReadyState:function() { var req = this.req; var ready = req.readyState; if( ready == JSONAjax.READY_STATE_COMPLETE) { var httpStatus = req.status; if( httpStatus == 200 || httpStatus == 0) { var onload = eval( this.onload ); if (this.isHTML == false) { onload(eval('(' + req.responseText + ')')); } else { onload(req.responseText); } } else { this.onerror(); } } }, defaultError:function(){ /* for debugging alert("error fetching data!" +"\n\nreadyState:" + this.req.readyState +"\nStatus:" + this.req.status +"\nheaders: " + this.req.getAllResponseHeaders()); */ }, getHost:function(url) { var reg = /^http:\/\/([^\/]*)\/.*/i; var matched = reg.exec(url); var host = null; if(matched != null && matched.length == 2) { host = matched[1]; } return host; } }; function ajaxHttpRequest(url, callback, isForcedIFrame, isHTML) { var contentLoader = new JSONAjax.ContentLoader(url, callback, isForcedIFrame, null, isHTML); contentLoader.loadContentAfterComplete(); } </SCRIPT> <!-- Start Quantcast tag --> <script type=text/javascript> function quantCall() { var quant_img = document.createElement("img"); quant_img.setAttribute("name","quantImg"); quant_img.setAttribute("src","http://pixel.quantserve.com/pixel/p-bab2-LCsBITgs.gif"); quant_img.setAttribute("height",1); quant_img.setAttribute("width",1); quant_img.style.display = "none"; document.body.appendChild(quant_img); } addEvent("onload",quantCall); </SCRIPT> <!-- End Quantcast tag --> <script src="http://images.ijji.com/common/scripts/external.js" type=text/javascript></SCRIPT> <script src="/scripts/drift_shop.js" type=text/javascript></SCRIPT> <script type=text/javascript> function popScreenShot(idx) { var win = openSimpleFrameWindow("http://game.ijji.com/sshot.nhn?gameId=u_skid&index=" + idx,"_blank","653","620"); } function popWallpaper(imgURL) { var win = openSimpleFrameWindow("http://game.ijji.com/wallPaper.nhn?imgURL=" + imgURL,"_blank","820","620"); } function popMovie(flvURL) { var win = openSimpleFrameWindow("http://game.ijji.com/movie.nhn?m=big&flvURL=" + flvURL,"_blank","492","460"); } //Temporary script override function preLaunchScript(gameId, subId, channelId, callback) { return true; } </SCRIPT> <script src="/scripts/ranking.js" type=text/javascript></SCRIPT> <script src="/scripts/poll_drift.js" type=text/javascript></SCRIPT> <LINK href="/styles/dc.css" type=text/css rel=stylesheet><LINK href="/styles/dc_main_080811.css" type=text/css rel=stylesheet><LINK href="/common/styles/v4/topsubmenuabs_en.css" type=text/css rel=stylesheet> <script type=text/javascript> <!-- // This solves the IE6 <a> bgimage "flicker" problem if(window.XMLHttpRequest){ if(window.ActiveXObject){/*alert ("IE7")*/} else{/*alert ("Firefox/Opera")*/} }else{/*alert ("IE6")*/ document.execCommand("BackgroundImageCache", false, true) } --> </SCRIPT> <!-- top --> <DIV style="BACKGROUND: url(http://images.ijjimax.com/v3/globalheader/gblhdr_topbnnr_bg.jpg) #212121 no-repeat center top; WIDTH: 100%; HEIGHT: 93px; TEXT-ALIGN: center"><IFRAME border=0 align=center marginWidth=0 marginHeight=0 src="http://ax.ijji.com/adshow?unit=0002A0" frameBorder=0 width=728 scrolling=no height=90></IFRAME></DIV><!-- repeating header bg --> <DIV id=gblhdr_header_bg_repeatx><!-- 100% wide centered bg --> <DIV id=gblhdr_header_bg_area><!-- for 780px wide layout --> <DIV id=gblhdr_header_bg_area_780px><!-- logo area --> <DIV id=gblhdr_ijjilogolink><A href="http://www.ijji.com"><IMG height=70 alt="Where Gamers Unite!" src="http://images.ijjimax.com/v2/common/blank.gif" width=140></A> </DIV><!-- //logo area --><!-- global topnav menu --> <DIV id=gblhdr_topnavbar_position><MAP id=globalmenu name=globalmenu><AREA shape=RECT alt="All Games" coords=1,0,91,18 href="java script:showAllGames('arcardgnb',-60, 25);"><AREA shape=RECT alt=Forum coords=99,0,151,17 href="http://forums.ijji.com"><AREA shape=RECT alt="Add G Coin" coords=165,-1,233,18 href="https://billing.ijji.com/payment/PaymentProcess.nhn"><AREA shape=RECT alt=Premier coords=247,-1,308,18 href="https://premier.ijji.com"><AREA shape=RECT alt=Download coords=319,0,390,17 href="http://www2.ijji.com/downloads.nhn"><AREA shape=RECT alt="My account" coords=408,1,462,18 href="http://member.ijji.com/myProfile.nhn"><AREA shape=RECT alt=Help coords=468,1,498,17 href="http://www2.ijji.com/faq.nhn"></MAP><IMG id=arcardgnb alt="" src="http://images.ijjimax.com/v3/globalheader/gblhdr_global_menu.gif" useMap=#globalmenu> </DIV><!-- //global topnav menu --><!-- signin top --> <DIV id=gblhdr_topsignin><A href="http://login.ijji.com/login.nhn?nextURL=http%3A%2F%2Fdrift.ijji.com%2Findex.nhn"><IMG alt="Sign In" src="http://images.ijjimax.com/v3/globalheader/btn_signin.gif"></A> </DIV><!-- //signin top --></DIV><!-- //for 780px wide layout --></DIV><!-- //100% wide centered bg --></DIV><!-- //repeating header bg --><!-- // top --><!-- topnav submenu --><!-- 2008_sp topnav submenu --> <DIV id=topnavsubmenuabs style="DISPLAY: none; LEFT: 0px; POSITION: absolute; TOP: 0px"><IFRAME id=topnavsubmenuabs_allgames_iframe style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; Z-INDEX: 999; LEFT: 0px; BORDER-LEFT: 0px; WIDTH: 305px; BORDER-BOTTOM: 0px; POSITION: absolute; TOP: 0px; HEIGHT: 315px" frameBorder=0></IFRAME><!-- allgames submenu --> <DIV id=topnavsubmenuabs_allgames style="Z-INDEX: 1000"><!-- all games layer --> <DIV id=allgame_layer_abs> <DIV class=section_bg01> <H4 class=tit_section>Action / RPG</H4></DIV><!-- list --> <UL class=allgame_layer_list> <LI><A href="http://gunz.ijji.com"><IMG height=40 alt="" src="http://images.ijjimax.com/v4/portalmain/en/thumb_gunz_layer.gif" width=64>GunZ</A> </LI> <LI><A href="http://sfront.ijji.com"><IMG height=40 alt="" src="http://images.ijjimax.com/v4/portalmain/en/thumb_sf_layer.gif" width=64>Soldier Front</A> </LI> <LI><A href="http://luminary.ijji.com"><IMG height=40 alt="" src="http://images.ijjimax.com/v4/portalmain/en/thumb_luminary_layer.gif" width=64>Luminary</A> </LI> <LI><A href="http://gunbound.ijji.com"><IMG height=40 alt="" src="http://images.ijjimax.com/v4/portalmain/en/thumb_gunbound_layer.gif" width=64>Gunbound</A> </LI> <LI><A href="http://drift.ijji.com"><IMG height=40 alt="" src="http://images.ijjimax.com/v4/portalmain/en/thumb_dc_layer.gif" width=64>Drift City</A> </LI> <LI><A href="http://lunia.ijji.com"><IMG height=40 alt="" src="http://images.ijjimax.com/v4/portalmain/en/thumb_lunia_layer.gif" width=64>Lunia</A> </LI> <LI><A href="http://rohan.ijji.com/"><SPAN class=new_game></SPAN><IMG height=40 alt="" src="http://images.ijjimax.com/v4/portalmain/en/thumb_rohan_layer.gif" width=64>Rohan:<BR>Blood Feud</A> </LI> <LI><A href="http://sfighters.ijji.com/"><SPAN class=new_game></SPAN><IMG height=40 alt="" src="http://images.ijjimax.com/v4/portalmain/en/thumb_splash_layer.gif" width=64>Splash<BR>Fighters</A> </LI></UL><!-- //list --><!-- 200904 --> <P style="PADDING-BOTTOM: 6px"><A href="http://huxley.ijji.com"><IMG height=40 alt="" src="http://images.ijjimax.com/v4/portalmain/huxley_layer_banner.jpg" width=288></A></P><!-- //200904 --> <DIV class=section_bg02 onmouseover="java script:underline('gnb_bm1',true)" style="CURSOR: pointer" onclick="java script:location.href='http://game.ijji.com/cardboard.nhn'" onmouseout="java script:underline('gnb_bm1',false)"> <H4 class=tit_section id=gnb_bm1>Card/Board Games</H4> <P class=tit_right03 style="PADDING-RIGHT: 5px; PADDING-LEFT: 0px; FLOAT: right; PADDING-BOTTOM: 0px; PADDING-TOP: 6px"><IMG height=13 alt=go src="http://images.ijjimax.com/v4/portalmain/en/btn_go3.gif" width=32></P></DIV> <DIV class=section_bg03 onmouseover="java script:underline('gnb_bm2',true)" style="CURSOR: pointer" onclick="java script:location.href='http://flash.ijji.com'" onmouseout="java script:underline('gnb_bm2',false)"> <H4 class=tit_section id=gnb_bm2>Mini Games</H4> <P class=tit_right03 style="PADDING-RIGHT: 5px; PADDING-LEFT: 0px; FLOAT: right; PADDING-BOTTOM: 0px; PADDING-TOP: 6px"><IMG height=13 alt=go src="http://images.ijjimax.com/v4/portalmain/en/btn_go3.gif" width=32></P></DIV> <DIV class=section_bg03 onmouseover="java script:underline('gnb_bm3',true)" style="CURSOR: pointer" onclick="java script:location.href='http://miningboy.ijji.com'" onmouseout="java script:underline('gnb_bm3',false)"> <H4 class=tit_section id=gnb_bm3>Mining Boy</H4> <P class=tit_right03 style="PADDING-RIGHT: 5px; PADDING-LEFT: 0px; FLOAT: right; PADDING-BOTTOM: 0px; PADDING-TOP: 6px"><IMG height=13 alt=go src="http://images.ijjimax.com/v4/portalmain/en/btn_go3.gif" width=32></P></DIV> <DIV class=close><IMG style="DISPLAY: inline; CURSOR: pointer" onclick=showAllGames(this); height=9 alt=close src="http://images.ijjimax.com/v4/portalmain/en/btn_close.gif" width=43></DIV></DIV><!-- //all games layer --></DIV><!-- //allgames submenu --></DIV> <script language=javascript type=text/javascript> //show All Games Layer function showAllGames(objId, offsetLeft, offsetTop) { try { var o = document.getElementById("topnavsubmenuabs"); var iframeO = document.getElementById("topnavsubmenuabs_allgames_iframe"); if ( o.style.display == "none" ) { var obj = document.getElementById(objId); var pos = findAbsPos(obj); o.style.left = (pos[0] + offsetLeft) + "px"; o.style.top = (pos[1] + offsetTop) + "px"; o.style.display = "block"; iframeO.style.display = "block"; } else { o.style.display = "none"; iframeO.style.display = "none"; } } catch (e) { } } function underline(eid,on) { if (on) document.getElementById(eid).style.textDecoration="underline"; else document.getElementById(eid).style.textDecoration="none"; } </SCRIPT> <!-- //topnav submenu --><!-- top --><!-- game navigation bar --> <DIV id=game_tnavbar_align><!-- game navigation bar 780px --> <DIV id=game_tnavbar_780px><!-- game top navigation menu bar --> <DIV id=game_menu_bg> <DIV id=driftcity><A href="/index.nhn">Drift City</A></DIV> <UL id=game_menu> <LI id=crew><A href="/crew.nhn">crew</A> </LI> <LI style="FLOAT: left"><IMG src="http://images.ijjimax.com/v3/drift/topbar_navi_separator.gif"> </LI> <LI id=itemshop><A href="/driftshop.nhn">item shop</A> </LI> <LI style="FLOAT: left"><IMG src="http://images.ijjimax.com/v3/drift/topbar_navi_separator.gif"> </LI> <LI id=guide><A href="/guide.nhn">game guide</A> </LI> <LI style="FLOAT: left"><IMG src="http://images.ijjimax.com/v3/drift/topbar_navi_separator.gif"> </LI> <LI id=media><A href="/media.nhn">media</A> </LI> <LI style="FLOAT: left"><IMG src="http://images.ijjimax.com/v3/drift/topbar_navi_separator.gif"> </LI> <LI id=forum><A href="http://forums.ijji.com/forumdisplay.php?f=116">forum</A> </LI> <LI style="FLOAT: left"><IMG src="http://images.ijjimax.com/v3/drift/topbar_navi_separator.gif"> </LI> <LI id=battle><A href="/battle.nhn">battle</A> </LI> <LI style="FLOAT: left"><IMG src="http://images.ijjimax.com/v3/drift/topbar_navi_separator.gif"> </LI> <LI id=showroom><A href="/showroom.nhn">showroom</A> </LI></UL></DIV><!-- //game top navigation menu bar --></DIV><!-- //game navigation bar 780px --></DIV><!-- //game navigation bar --><!-- // top --><LINK href="/styles/dc_main.css" rel=stylesheet><LINK href="/styles/dc_main_080811.css" rel=stylesheet><LINK href="/styles/dc_itemshop.css" rel=stylesheet> <script language=javascript src="/scripts/layer_item.js"></SCRIPT> <script language=javascript src="/scripts/flashContents.js"></SCRIPT> <script type=text/javascript> var newItemNum =1; var req_detailInfo; function toggleItems(mnu) { alllayerclose(); var newItems1 = document.getElementById('newItemsPanel1'); var newItems2 = document.getElementById('newItemsPanel2'); var newitems3 = document.getElementById('newItemsPanel3'); if (mnu == 'prev') { if(newItemNum == 2) { newItemNum = 1; newItems1.style.display = 'block'; newItems2.style.display = 'none'; // newItems3.style.display = 'none'; }else if(newItemNum == 3) { newItemNum = 2; // newItems1.style.display = 'none'; newItems2.style.display = 'block'; newitems3.style.display = 'none'; } } else { if(newItemNum == 1) { newItemNum = 2; newItems1.style.display = 'none'; newItems2.style.display = 'block'; // newItems3.style.display = 'none'; }else if(newItemNum == 2) { newItemNum = 3; // newItems1.style.display = 'none'; newItems2.style.display = 'none'; newitems3.style.display = 'block'; } } } if (document.getElementById){ document.write('<style type="text/css">\n') document.write('.submenu{display: none;}\n') document.write('</style>\n') } function SwitchMenu(obj){ if(document.getElementById){ var el = document.getElementById(obj); var ar = document.getElementById("list_box").getElementsByTagName("span"); if(el.style.display != "block"){ for (var i=0; i<ar.length; i++){ if (ar[i].className=="submenu") ar[i].style.display = "none"; } el.style.display = "block"; el.style.zIndex = "1"; }else{ el.style.display = "none"; } } } function toggleRank(num) { var rank1 = document.getElementById('rankPanel1'); var rank2 = document.getElementById('rankPanel2'); var rank3 = document.getElementById('rankPanel3'); var rank4 = document.getElementById('rankPanel4'); if(num == 1) { rank1.style.display = 'block'; rank2.style.display = 'none'; rank3.style.display = 'none'; rank4.style.display = 'none'; }else if(num == 2) { rank1.style.display = 'none'; rank2.style.display = 'block'; rank3.style.display = 'none'; rank4.style.display = 'none'; }else if(num == 3) { rank1.style.display = 'none'; rank2.style.display = 'none'; rank3.style.display = 'block'; rank4.style.display = 'none'; }else if(num == 4) { rank1.style.display = 'none'; rank2.style.display = 'none'; rank3.style.display = 'none'; rank4.style.display = 'block'; } } function reqDetailInfoByJson(prodId, index) { var frm = document.frm; var url = "/index.nhn?m=detail"; var reqString = "&prodId="+prodId+"&index="+index; if (window.XMLHttpRequest) { req_detailInfo = new XMLHttpRequest(); req_detailInfo.onreadystatechange = changeDetailInfo; /* callback */ req_detailInfo.open("GET", url + reqString, true); req_detailInfo.send(null); }else if (window.ActiveXObject) { req_detailInfo = new ActiveXObject("Microsoft.XMLHTTP"); if (req_detailInfo) { req_detailInfo.onreadystatechange = changeDetailInfo; /* callback */ req_detailInfo.open("POST", url, true); req_detailInfo.setRequestHeader('Content-Type','application/x-www-form-urlencoded; charset=UTF-8'); req_detailInfo.send(reqString); } } } function changeDetailInfo() { if (req_detailInfo.readyState == 4 && req_detailInfo.status == 200) { var responseStr = req_detailInfo.responseText; var jsonStr = eval('('+responseStr+')'); var index = jsonStr.index; if (jsonStr.result) { document.getElementById("parent"+index).style.display="block"; var speed = document.getElementById("speed"+index); var accel = document.getElementById("accel"+index); var boost = document.getElementById("boost"+index); var crash = document.getElementById("crash"+index); speed.innerHTML = "Speed " + jsonStr.speed; accel.innerHTML = "Accel " + jsonStr.accel; boost.innerHTML = "Boost " + jsonStr.boost; crash.innerHTML = "Crash " + jsonStr.crash; } else { document.getElementById("parent"+index).style.display="none"; } } else { /* exception */ } } </SCRIPT> <STYLE type=text/css>.submenu { DISPLAY: none } </STYLE> <!-- contents --> <DIV id=wrap> <DIV id=container><!-- 200901 crm layer --> <DIV class=crm_layer id=crm_layer style="DISPLAY: none"> <P class=close><A onclick="closeCrmLayer();return false;" href="#"><IMG height=13 alt=Close src="http://images.ijjimax.com/crm/btn_close2.gif" width=14></A></P></DIV><!-- //200901 crm layer --> <DIV class=bg_right></DIV> <DIV class=bg_inner></DIV> <DIV class=spot> <DIV class=youtube id=showBox><EMBED src=http://www.youtube.com/v/jhfYIXeP6yo&hl=en&fs=1 width=350 height=205 type=application/x-shockwave-flash wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></EMBED></DIV> <DIV style="DISPLAY: none"> <DIV id=youtube name="youtube"><EMBED src=http://www.youtube.com/v/o60kDBZHazc&hl=en&fs=1 width=350 height=205 type=application/x-shockwave-flash wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></EMBED></DIV> <DIV id=youtube name="youtube"><EMBED src=http://www.youtube.com/v/jHD0sjCfbGs&hl=en&fs=1 width=350 height=205 type=application/x-shockwave-flash wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></EMBED></DIV> <DIV id=youtube name="youtube"><EMBED src=http://www.youtube.com/v/OHjIrj9BgO0&hl=en&fs=1 width=350 height=205 type=application/x-shockwave-flash wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></EMBED></DIV> <DIV id=youtube name="youtube"><EMBED src=http://www.youtube.com/v/wkmzlqxc1c4&hl=en&fs=1 width=350 height=205 type=application/x-shockwave-flash wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></EMBED></DIV> <DIV id=youtube name="youtube"><EMBED src=http://www.youtube.com/v/jmkUMjMvKVc&hl=en&fs=1 width=350 height=205 type=application/x-shockwave-flash wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></EMBED></DIV> <DIV id=youtube name="youtube"><EMBED src=http://www.youtube.com/v/JnGjBZ7hnx8&hl=en&fs=1 width=350 height=205 type=application/x-shockwave-flash wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></EMBED></DIV> <DIV id=youtube name="youtube"><EMBED src=http://www.youtube.com/v/luCjJWvAovY&hl=en&fs=1 width=350 height=205 type=application/x-shockwave-flash wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></EMBED></DIV> <DIV id=youtube name="youtube"><EMBED src=http://www.youtube.com/v/KbB5BM-8KTY&hl=en&fs=1 width=350 height=205 type=application/x-shockwave-flash wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></EMBED></DIV> <DIV id=youtube name="youtube"><EMBED src=http://www.youtube.com/v/jhfYIXeP6yo&hl=en&fs=1 width=350 height=205 type=application/x-shockwave-flash wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></EMBED></DIV></DIV> <STYLE>#bbb_driftcity00 { BACKGROUND: url(http://downfile.ijjimax.com/cms/game/DC/driftcity_youtube.jpg) no-repeat center top; WIDTH: 100%; HEIGHT: 220px } </STYLE> <script> var youtube = document.getElementsByName("youtube"); if(youtube != null && youtube.length > 0){ var choose = Math.floor(Math.random()*100 % youtube.length); document.getElementById("showBox").innerHTML = youtube[choose].innerHTML; } </SCRIPT> <!-- 200811 modify --> <DIV id=bbb_driftcity00></DIV><!-- 200901 premier coupon layer --> <DIV class=premier_coupon_layer id=prmrCouponLayer style="DISPLAY: none"> <P class=close><A href="java script:closePremierCouponLayer();"><IMG height=13 alt=Close src="http://images.ijjimax.com/v4/portalmain/common/btn_close2.gif" width=14></A></P> <P class=txt>You've received a special offer<BR>for 1 month free of <A href="java script:usePremierCoupon();"><SPAN class=org02 id=ajax_pcoupon>-</SPAN>.</A><BR>(<SPAN id=ajax_pcoupon_pgcoin>-</SPAN> PG Coin) </P> <P class=premier_coupon_btn><A href="java script:usePremierCoupon();"><IMG height=18 alt="GO PREMIER" src="http://images.ijjimax.com/v4/portalmain/common/btn_go_premier.gif" width=86></A></P></DIV><!-- //200901 premier coupon layer --><!-- //200811 modify --></DIV><!-- side navigation bar --> <DIV class=snb><!-- how to play --> <DIV class=section><A href="/guide.nhn?m=howtoplay"><IMG height=80 alt="How to Play" src="http://images.ijjimax.com/v3/drift/mainrenewal/how_to_play.jpg" width=160></A></DIV><!-- //how to play --><!-- server timer --><!-- saved from url=(0013)about:internet --> <DIV class=section2> <script language=javascript> //showFlash(_swfURL_,_flashID_,_width_,_height_,_wmode_,_flashVars_,_bgColor_,_allowFullScreen_); showFlash('/includes/flash/clock.swf', 'clock1', '159', '78', 'transparent', "PDTtime=2009|5|21|12|46|46&colType=1"); </SCRIPT> <OBJECT id=clock1 codeBase=http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0 height=78 width=159 align=middle classid=clsid:d27cdb6e-ae6d-11cf-96b8-444553540000><PARAM NAME="_cx" VALUE="4207"><PARAM NAME="_cy" VALUE="2064"><PARAM NAME="FlashVars" VALUE=""><PARAM NAME="Movie" VALUE="/includes/flash/clock.swf"><PARAM NAME="Src" VALUE="/includes/flash/clock.swf"><PARAM NAME="WMode" VALUE="Transparent"><PARAM NAME="Play" VALUE="0"><PARAM NAME="Loop" VALUE="-1"><PARAM NAME="Quality" VALUE="High"><PARAM NAME="SAlign" VALUE="LT"><PARAM NAME="Menu" VALUE="0"><PARAM NAME="Base" VALUE=""><PARAM NAME="AllowScriptAccess" VALUE="always"><PARAM NAME="Scale" VALUE="NoScale"><PARAM NAME="DeviceFont" VALUE="0"><PARAM NAME="EmbedMovie" VALUE="0"><PARAM NAME="BGColor" VALUE="FFFFFF"><PARAM NAME="SWRemote" VALUE=""><PARAM NAME="MovieData" VALUE=""><PARAM NAME="SeamlessTabbing" VALUE="1"><PARAM NAME="Profile" VALUE="0"><PARAM NAME="ProfileAddress" VALUE=""><PARAM NAME="ProfilePort" VALUE="0"><PARAM NAME="AllowNetworking" VALUE="all"><PARAM NAME="AllowFullScreen" VALUE="true"></OBJECT></DIV><!-- //server timer --><!-- ranking --> <DIV class=section3> <H2><IMG class=title height=10 alt=Ranking src="http://images.ijjimax.com/v3/drift/mainrenewal/h_ranking.jpg" width=48> <A href="/battle.nhn?m=ranking"><IMG height=14 alt=more src="http://images.ijjimax.com/v3/drift/main/btn_more03.gif" width=25></A></H2> <DIV class=tab_menu> <H3><A class=rollover href="#"><IMG onmouseover=java script:toggleRank(1) height=22 alt=Crew src="http://images.ijjimax.com/v3/drift/mainrenewal/tab_crew.jpg" width=39> <IMG class=over height=22 alt=Crew src="http://images.ijjimax.com/v3/drift/mainrenewal/tab_crew_on.jpg" width=39></A></H3> <H3><A class=rollover href="#"><IMG onmouseover=java script:toggleRank(2) height=22 alt=Single src="http://images.ijjimax.com/v3/drift/mainrenewal/tab_single.jpg" width=41> <IMG class=over height=22 alt=Single src="http://images.ijjimax.com/v3/drift/mainrenewal/tab_single_on.jpg" width=41></A></H3> <H3><A class=rollover href="#"><IMG onmouseover=java script:toggleRank(3) height=22 alt=Team src="http://images.ijjimax.com/v3/drift/mainrenewal/tab_team.jpg" width=40> <IMG class=over height=22 alt=Team src="http://images.ijjimax.com/v3/drift/mainrenewal/tab_team_on.jpg" width=40></A></H3> <H3><A class=rollover href="#"><IMG onmouseover=java script:toggleRank(4) height=22 alt=Level src="http://images.ijjimax.com/v3/drift/mainrenewal/tab_level.jpg" width=40> <IMG class=over height=22 alt=Level src="http://images.ijjimax.com/v3/drift/mainrenewal/tab_level_on.jpg" width=40></A></H3></DIV> <DIV class=box_type id=rankPanel1 style="DISPLAY: block"> <TABLE class=tbl_type cellSpacing=0 cellPadding=0> <COLGROUP> <COL width=10> <COL width=70> <COL> <TBODY> <TR class=noline> <TH><IMG height=11 alt=1 src="http://images.ijjimax.com/v3/drift/mainrenewal/num1.jpg" width=11></TH> <TH class=id_user><A href="/mycrew/home.nhn?crewid=370670">-Synergy-</A></TH> <TD>25,771,036</TD></TR> <TR> <TH><IMG height=11 alt=2 src="http://images.ijjimax.com/v3/drift/mainrenewal/num2.jpg" width=11></TH> <TH class=id_user><A href="/mycrew/home.nhn?crewid=245335">Brazil</A></TH> <TD>23,087,381</TD></TR> <TR> <TH><IMG height=11 alt=3 src="http://images.ijjimax.com/v3/drift/mainrenewal/num3.jpg" width=11></TH> <TH class=id_user><A href="/mycrew/home.nhn?crewid=610197">DC_Addicts</A></TH> <TD>17,713,759</TD></TR> <TR> <TH><IMG height=11 alt=4 src="http://images.ijjimax.com/v3/drift/mainrenewal/num4.jpg" width=11></TH> <TH class=id_user><A href="/mycrew/home.nhn?crewid=675793">-compLexity-</A></TH> <TD>17,531,193</TD></TR> <TR> <TH><IMG height=11 alt=5 src="http://images.ijjimax.com/v3/drift/mainrenewal/num5.jpg" width=11></TH> <TH class=id_user><A href="/mycrew/home.nhn?crewid=591856">-Galaxy-</A></TH> <TD>16,598,283</TD></TR></TBODY></TABLE></DIV> <DIV class=box_type id=rankPanel2 style="DISPLAY: none"> <TABLE class=tbl_type cellSpacing=0 cellPadding=0> <COLGROUP> <COL width=10> <COL width=70> <COL> <TBODY> <TR class=noline> <TH><IMG height=11 alt=1 src="http://images.ijjimax.com/v3/drift/mainrenewal/num1.jpg" width=11></TH> <TH class=id_user>TrashBin</TH> <TD>97</TD></TR> <TR> <TH><IMG height=11 alt=2 src="http://images.ijjimax.com/v3/drift/mainrenewal/num2.jpg" width=11></TH> <TH class=id_user>F4SKY</TH> <TD>96</TD></TR> <TR> <TH><IMG height=11 alt=3 src="http://images.ijjimax.com/v3/drift/mainrenewal/num3.jpg" width=11></TH> <TH class=id_user>bats_88</TH> <TD>97</TD></TR> <TR> <TH><IMG height=11 alt=4 src="http://images.ijjimax.com/v3/drift/mainrenewal/num4.jpg" width=11></TH> <TH class=id_user>luqketti</TH> <TD>95</TD></TR> <TR> <TH><IMG height=11 alt=5 src="http://images.ijjimax.com/v3/drift/mainrenewal/num5.jpg" width=11></TH> <TH class=id_user>Shippuden</TH> <TD>82</TD></TR></TBODY></TABLE></DIV> <DIV class=box_type id=rankPanel3 style="DISPLAY: none"> <TABLE class=tbl_type cellSpacing=0 cellPadding=0> <COLGROUP> <COL width=10> <COL width=70> <COL> <TBODY> <TR class=noline> <TH><IMG height=11 alt=1 src="http://images.ijjimax.com/v3/drift/mainrenewal/num1.jpg" width=11></TH> <TH class=id_user>disc0nector</TH> <TD>97</TD></TR> <TR> <TH><IMG height=11 alt=2 src="http://images.ijjimax.com/v3/drift/mainrenewal/num2.jpg" width=11></TH> <TH class=id_user>WeEeiiPK</TH> <TD>98</TD></TR> <TR> <TH><IMG height=11 alt=3 src="http://images.ijjimax.com/v3/drift/mainrenewal/num3.jpg" width=11></TH> <TH class=id_user>maicol</TH> <TD>97</TD></TR> <TR> <TH><IMG height=11 alt=4 src="http://images.ijjimax.com/v3/drift/mainrenewal/num4.jpg" width=11></TH> <TH class=id_user>S1LV3R_W0LF</TH> <TD>97</TD></TR> <TR> <TH><IMG height=11 alt=5 src="http://images.ijjimax.com/v3/drift/mainrenewal/num5.jpg" width=11></TH> <TH class=id_user>ir00</TH> <TD>98</TD></TR></TBODY></TABLE></DIV> <DIV class=box_type id=rankPanel4 style="DISPLAY: none"> <TABLE class=tbl_type cellSpacing=0 cellPadding=0> <COLGROUP> <COL width=10> <COL width=70> <COL> <TBODY> <TR class=noline> <TH><IMG height=11 alt=1 src="http://images.ijjimax.com/v3/drift/mainrenewal/num1.jpg" width=11></TH> <TH class=id_user>thisux</TH> <TD>100</TD></TR> <TR> <TH><IMG height=11 alt=2 src="http://images.ijjimax.com/v3/drift/mainrenewal/num2.jpg" width=11></TH> <TH class=id_user>FUN_NEV</TH> <TD>100</TD></TR> <TR> <TH><IMG height=11 alt=3 src="http://images.ijjimax.com/v3/drift/mainrenewal/num3.jpg" width=11></TH> <TH class=id_user>GOGOGOGOGO</TH> <TD>99</TD></TR> <TR> <TH><IMG height=11 alt=4 src="http://images.ijjimax.com/v3/drift/mainrenewal/num4.jpg" width=11></TH> <TH class=id_user>SuperGran</TH> <TD>99</TD></TR> <TR> <TH><IMG height=11 alt=5 src="http://images.ijjimax.com/v3/drift/mainrenewal/num5.jpg" width=11></TH> <TH class=id_user>PsychoZ</TH> <TD>99</TD></TR></TBODY></TABLE></DIV></DIV><!-- //ranking --><!-- +++poll+++ --><!-- <div style="height: 6px;"></div> --> <DIV class=section4> <H2><IMG height=8 alt=POLL src="http://images.ijjimax.com/v3/drift/mainrenewal/h_poll.jpg" width=26></H2><SPAN id=ajax_poll name="ajax_poll"> <FORM name=ajax_poll_frm> <P>Have you had a chance to participate in Rush Time yet?</P> <DIV class=chk_choice><INPUT type=radio value=0 name=ajax_radio_poll><LABEL for=ajax_radio_poll0> Yes</LABEL></DIV> <DIV class=chk_choice><INPUT type=radio value=1 name=ajax_radio_poll><LABEL for=ajax_radio_poll1> No</LABEL></DIV> <DIV class=btns><A href="java script:void(submitPoll());"><IMG height=15 alt=OK src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_ok.jpg" width=25 border=0></A></DIV></FORM></SPAN> <script>getPoll( "20080507_RushTimeParticipation", "u_skid");</SCRIPT> </DIV><!-- //+++//poll+++ --><!-- full ver. download --> <DIV class=section5><A href="http://www2.ijji.com/downloads.nhn"><IMG height=63 alt="" src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_download.jpg" width=162></A></DIV><!-- full ver. download --></DIV><!-- //side navigation bar --><!-- contents area --> <DIV id=content><!-- play alive --> <DIV class=section> <STYLE type=text/css>#playlivemain01_422px { WIDTH: 422px; POSITION: relative; HEIGHT: 80px; TEXT-ALIGN: left } #playlivemain01_422px .plvmain_bg { BACKGROUND: url(http://images.ijjimax.com/v3/common/playlive/playlive_bg_main01_422px.gif) no-repeat left top; FILTER: alpha(opacity=80); LEFT: 0px; WIDTH: 100%; POSITION: absolute; TOP: 0px; HEIGHT: 100%; -moz-opacity: 0.80; opacity: 0.80 } #playlivemain01_422px .plvmain_playersonline { LEFT: 24px; POSITION: absolute; TOP: 21px } #playlivemain01_422px .plvmain_downloadsize { FONT-SIZE: 9px; LEFT: 23px; COLOR: #bababa; LINE-HEIGHT: 13px; POSITION: absolute; TOP: 47px } #playlivemain01_422px .plvmain_downloadsize A { FONT-SIZE: 9px; COLOR: #bababa; LINE-HEIGHT: 13px } #playlivemain01_422px .plvmain_btn { LEFT: 259px; POSITION: absolute; TOP: 14px } #playlivemain01_422px .plvmain_btn A { BACKGROUND: url(http://images.ijjimax.com/v3/common/playlive/playlive_btn_main01.gif) no-repeat left top; FLOAT: left; WIDTH: 150px; TEXT-INDENT: -9000px; HEIGHT: 52px } #playlivemain01_422px .plvmain_btn A:hover { BACKGROUND-POSITION: 0px -52px } </STYLE> <!-- 090417 playlivemain01_422px --> <DIV id=playlivemain01_422px> <DIV class=plvmain_bg></DIV> <DIV class=plvmain_playersonline><A href="http://www2.ijji.com/downloads.nhn#u_skid"><IMG height=10 alt="Direct File Download" src="http://images.ijjimax.com/v3/common/playlive/playlive_txt_download.gif" width=135></A> </DIV> <DIV class=plvmain_downloadsize>File Size (709.0 MB)</DIV> <DIV class=plvmain_btn><A href="java script:goPlay('u_skid', '');">Play Live Button</A></DIV></DIV><!-- //090417 playlivemain01_422px --></DIV><!-- //play alive --><!-- announcements --> <DIV class=section2> <H2><IMG height=8 alt=ANNOUNCEMENTS src="http://images.ijjimax.com/v3/drift/mainrenewal/h_announcements.jpg" width=95> <A href="http://forums.ijji.com/forumdisplay.php?f=123"><IMG height=14 alt=more src="http://images.ijjimax.com/v3/drift/main/btn_more03.gif" width=25></A></H2> <DIV><A href="http://forums.ijji.com/showthread.php?t=498628"><IMG src="http://downfile.ijjimax.com/cms/arcade/dc/img/20090417_dc_191x40.gif"></A></DIV> <UL class=mc_newsbox_bulletlist> <LI class=top><A href="http://forums.ijji.com/showthread.php?p=5940555">Premier Service Closing</A> </LI> <LI class=top><A href="http://forums.ijji.com/showthread.php?t=524253">Drift City Update 5/18</A> </LI> <LI class=top><A href="http://forums.ijji.com/showthread.php?p=5806374">IJJI on Twitter!</A> </LI></UL></DIV><!-- //announcements --><!-- events --> <DIV class=section3> <H2><IMG height=8 alt=EVENTS src="http://images.ijjimax.com/v3/drift/mainrenewal/h_events.jpg" width=41> <A href="http://forums.ijji.com/forumdisplay.php?f=124"><IMG height=14 alt=more src="http://images.ijjimax.com/v3/drift/main/btn_more03.gif" width=25></A></H2> <DIV><A href="http://forums.ijji.com/showthread.php?t=427937"><IMG src="http://downfile.ijjimax.com/cms/arcade/gm/Rebate_Banners_DC.jpg "></A></DIV> <UL class=mc_newsbox_bulletlist> <LI class=top><A href="http://forums.ijji.com/showthread.php?p=4784822">Valentines Day Event!</A> </LI> <LI class=top><A href="http://forums.ijji.com/showthread.php?t=427937">V-Upgrade Rebate Event</A> </LI> <LI class=top><A href="http://drift.ijji.com/youtube.nhn">DC Promotional Vid Event</A> </LI></UL></DIV><!-- //events --><!-- item list --> <DIV class=section4> <DIV class=section_sub> <H2><IMG height=10 alt="HOT SALE ITEM" src="http://images.ijjimax.com/v3/drift/mainrenewal/h_hot_sale_item.gif" width=81></H2> <UL> <LI><SPAN class=item><IMG height=67 alt=thumb src="http://images.ijjimax.com/v3/drift/itemshop/items/i_d_n_00001.gif" width=69><IMG class=layer_hot height=32 alt=HOT src="http://images.ijjimax.com/v3/drift/mainrenewal/layer_hot.gif" width=32></SPAN> <STRONG>Green Neon 30 days</STRONG> <SPAN class=off_price><IMG height=12 alt="G coin" src="http://images.ijjimax.com/v3/drift/mainrenewal/ico_g.gif" width=11> 7<EM>(50% OFF)</EM></SPAN> <SPAN class=btn><A href="/shop/hotsale.nhn"><IMG height=15 alt=BUY src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_buy.gif" width=32></A></SPAN> </LI></UL></DIV> <DIV class=section_sub2 style="Z-INDEX: 1; POSITION: relative"> <H2><IMG height=10 alt="NEW DC SHOP ITEM" src="http://images.ijjimax.com/v3/drift/mainrenewal/h_new_dc_shop_item.gif" width=103> <SPAN><A href="java script:toggleItems('prev');"><IMG height=11 alt="" src="http://images.ijjimax.com/v3/drift/mainrenewal/ico_left.gif" width=12></A> <A href="java script:toggleItems('next');"><IMG height=11 alt="" src="http://images.ijjimax.com/v3/drift/mainrenewal/ico_right.gif" width=12></A></SPAN> </H2> <DIV id=newItemsPanel1 style="Z-INDEX: 1; POSITION: relative"> <UL> <LI><SPAN class=item><IMG height=67 alt=thumb src="http://images.ijjimax.com/v3/drift/itemshop/items/Tire_Ply0009.gif" width=67><IMG class=layer_new height=32 alt=NEW src="http://images.ijjimax.com/v3/drift/mainrenewal/layer_new.gif" width=32></SPAN> <STRONG>Style</STRONG> <SPAN class=off_price><IMG height=12 alt="G coin" src="http://images.ijjimax.com/v3/drift/mainrenewal/ico_g.gif" width=11> 17 (7 Days) </SPAN><SPAN class=btn><A href="java script:layerview_main(this,'layer_item1');reqDetailInfoByJson('SKR10194_007','0');"><IMG height=15 alt=DETAILS src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_details.gif" width=55></A> <A href="/shop/purpleshop_purchase.nhn?m=purchaseform&prodId=SKR10194_007&branchId=shop03_tab05"><IMG height=15 alt=BUY src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_buy.gif" width=32></A></SPAN> <!-- item_layer --> <DIV class=main_parentcontainer style="Z-INDEX: 1; POSITION: relative"> <DIV class=layer_position id=layer_item1 style="DISPLAY: none; Z-INDEX: 20"> <DIV class=item_layer> <DIV class=item_layer_b><!-- item --> <DIV class=item_box><A class=thumb href="#none"><IMG height=67 alt="" src="http://images.ijjimax.com/v3/drift/itemshop/items/Tire_Ply0009.gif" width=67></A> <DL> <DT>Style <DD class=gcoin>17 / 7 Days <DD class=gcoin>40 / 30 Days <DD class=gcoin>88 / 90 Days </DD></DL></DIV><!-- //item --><!-- item detail --> <STYLE type=text/css>UL .item_detail { DISPLAY: inline; BACKGROUND: url(http://images.ijjimax.com/v3/drift/itemshop/item_layer_tit.gif) no-repeat; FLOAT: left; MARGIN: 9px 0px 0px 11px; WIDTH: 237px; HEIGHT: 20px } UL .item_detail LI { PADDING-RIGHT: 9px; PADDING-LEFT: 9px; FONT-SIZE: 9px; BACKGROUND: url(http://images.ijjimax.com/v3/drift/itemshop/item_layer_bar.gif) no-repeat right 5px; FLOAT: left; PADDING-BOTTOM: 0px; COLOR: #c5c5c5; PADDING-TOP: 3px } .item_detail LI.last { BACKGROUND: none transparent scroll repeat 0% 0% } </STYLE> <DIV id=parent0 style="DISPLAY: none"> <UL class=item_detail> <LI id=speed0>Speed </LI> <LI id=accel0>Accel </LI> <LI id=boost0>Boost </LI> <LI class=last id=crash0>Crash </LI></UL></DIV> <P class=item_detail_txt>These wheels boost your speed and acceleration while making your car look unique! </P><!-- //item detail --> <P><A href="/shop/purpleshop_purchase.nhn?m=purchaseform&prodId=SKR10194_007&branchId=shop03_tab05"><IMG height=17 alt=BUY src="http://images.ijjimax.com/v3/drift/itemshop/item_layer_buy.gif" width=40 border=0></A> </P> <P class=item_layer_close><A onclick="layerclose('layer_item1')" href="#none"><IMG height=11 alt=CLOSE src="http://images.ijjimax.com/v3/drift/itemshop/item_layer_close.gif" width=11 border=0></A></P></DIV></DIV></DIV></DIV><!-- //item_layer --></LI> <LI><SPAN class=item><IMG height=67 alt=thumb src="http://images.ijjimax.com/v3/drift/itemshop/items/i_d_d_0202.gif" width=67><IMG class=layer_new height=32 alt=NEW src="http://images.ijjimax.com/v3/drift/mainrenewal/layer_new.gif" width=32></SPAN> <STRONG>Orchid lightning</STRONG> <SPAN class=off_price><IMG height=12 alt="G coin" src="http://images.ijjimax.com/v3/drift/mainrenewal/ico_g.gif" width=11> 10 (7 Days) </SPAN><SPAN class=btn><A href="java script:layerview_main(this,'layer_item2');reqDetailInfoByJson('SKR10218_007','1');"><IMG height=15 alt=DETAILS src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_details.gif" width=55></A> <A href="java script:alert('This item is only purchasable inside the game.')"><IMG height=15 alt=BUY src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_buy.gif" width=32 border=0></A> <!-- item_layer --> <DIV class=main_parentcontainer style="Z-INDEX: 1; POSITION: relative"> <DIV class=layer_position id=layer_item2 style="DISPLAY: none; Z-INDEX: 20"> <DIV class=item_layer> <DIV class=item_layer_b><!-- item --> <DIV class=item_box><A class=thumb href="#none"><IMG height=67 alt="" src="http://images.ijjimax.com/v3/drift/itemshop/items/i_d_d_0202.gif" width=67></A> <DL> <DT>Orchid lightning <DD class=gcoin>10 / 7 Days <DD class=gcoin>20 / 30 Days <DD class=gcoin>40 / 90 Days </DD></DL></DIV><!-- //item --><!-- item detail --> <STYLE type=text/css>UL .item_detail { DISPLAY: inline; BACKGROUND: url(http://images.ijjimax.com/v3/drift/itemshop/item_layer_tit.gif) no-repeat; FLOAT: left; MARGIN: 9px 0px 0px 11px; WIDTH: 237px; HEIGHT: 20px } UL .item_detail LI { PADDING-RIGHT: 9px; PADDING-LEFT: 9px; FONT-SIZE: 9px; BACKGROUND: url(http://images.ijjimax.com/v3/drift/itemshop/item_layer_bar.gif) no-repeat right 5px; FLOAT: left; PADDING-BOTTOM: 0px; COLOR: #c5c5c5; PADDING-TOP: 3px } .item_detail LI.last { BACKGROUND: none transparent scroll repeat 0% 0% } </STYLE> <DIV id=parent1 style="DISPLAY: none"> <UL class=item_detail> <LI id=speed1>Speed </LI> <LI id=accel1>Accel </LI> <LI id=boost1>Boost </LI> <LI class=last id=crash1>Crash </LI></UL></DIV> <P class=item_detail_txt>Lightning bolt that beautifully blosoms into a flower shape! By combining a plant and lightning bolt, this will give your car a more complicated special look. </P><!-- //item detail --> <P><A href="java script:alert('This item is only purchasable inside the game.')"><IMG height=17 alt=BUY src="http://images.ijjimax.com/v3/drift/itemshop/item_layer_buy.gif" width=40 border=0></A> </P> <P class=item_layer_close><A onclick="layerclose('layer_item2')" href="#none"><IMG height=11 alt=CLOSE src="http://images.ijjimax.com/v3/drift/itemshop/item_layer_close.gif" width=11 border=0></A></P></DIV></DIV></DIV></DIV><!-- //item_layer --></LI></UL></DIV> <DIV id=newItemsPanel2 style="DISPLAY: none"> <UL> <LI><SPAN class=item><IMG height=67 alt=thumb src="http://images.ijjimax.com/v3/drift/itemshop/items/i_d_d_0304.gif" width=67><IMG class=layer_new height=32 alt=NEW src="http://images.ijjimax.com/v3/drift/mainrenewal/layer_new.gif" width=32></SPAN> <STRONG>Flag check line2</STRONG> <SPAN class=off_price><IMG height=12 alt="G coin" src="http://images.ijjimax.com/v3/drift/mainrenewal/ico_g.gif" width=11> 10 (7 Days) </SPAN><SPAN class=btn><A href="java script:layerview_main(this,'layer_item3');reqDetailInfoByJson('SKR10230_007','2');"><IMG height=15 alt=DETAILS src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_details.gif" width=55></A> <A href="java script:alert('This item is only purchasable inside the game.')"><IMG height=15 alt=BUY src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_buy.gif" width=32 border=0></A> <!-- item_layer --> <DIV class=main_parentcontainer style="Z-INDEX: 1; POSITION: relative"> <DIV class=layer_position id=layer_item3 style="DISPLAY: none"> <DIV class=item_layer> <DIV class=item_layer_b><!-- item --> <DIV class=item_box><A class=thumb href="#none"><IMG height=67 alt="" src="http://images.ijjimax.com/v3/drift/itemshop/items/i_d_d_0304.gif" width=67></A> <DL> <DT>Flag check line2 <DD class=gcoin>10 / 7 Days <DD class=gcoin>20 / 30 Days <DD class=gcoin>40 / 90 Days </DD></DL></DIV><!-- //item --><!-- item detail --> <DIV id=parent2 style="DISPLAY: none"> <UL class=item_detail> <LI id=speed2>Speed </LI> <LI id=accel2>Accel </LI> <LI id=boost2>Boost </LI> <LI class=last id=crash2>Crash </LI></UL></DIV> <P class=item_detail_txt>A transformation of the checkered flag is a simple and sophisticated decal that is well matched with most types of cars. </P><!-- //item detail --> <P><A href="java script:alert('This item is only purchasable inside the game.')"><IMG height=17 alt=BUY src="http://images.ijjimax.com/v3/drift/itemshop/item_layer_buy.gif" width=40 border=0></A> </P> <P class=item_layer_close><A onclick="layerclose('layer_item3')" href="#none"><IMG height=11 alt=CLOSE src="http://images.ijjimax.com/v3/drift/itemshop/item_layer_close.gif" width=11 border=0></A></P></DIV></DIV></DIV></DIV><!-- //item_layer --></LI> <LI><SPAN class=item><IMG height=67 alt=thumb src="http://images.ijjimax.com/v3/drift/itemshop/items/i_g_c_00002.gif" width=67><IMG class=layer_new height=32 alt=NEW src="http://images.ijjimax.com/v3/drift/mainrenewal/layer_new.gif" width=32></SPAN> <STRONG>Glossy Sky Blue</STRONG> <SPAN class=off_price><IMG height=12 alt="G coin" src="http://images.ijjimax.com/v3/drift/mainrenewal/ico_g.gif" width=11> 9 (7 Days) </SPAN><SPAN class=btn><A href="java script:layerview_main(this,'layer_item4');reqDetailInfoByJson('SKR10474_007','3');"><IMG height=15 alt=DETAILS src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_details.gif" width=55></A> <A href="java script:alert('This item is only purchasable inside the game.')"><IMG height=15 alt=BUY src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_buy.gif" width=32 border=0></A> <!-- item_layer --> <DIV class=main_parentcontainer style="Z-INDEX: 1; POSITION: relative"> <DIV class=layer_position id=layer_item4 style="DISPLAY: none"> <DIV class=item_layer> <DIV class=item_layer_b><!-- item --> <DIV class=item_box><A class=thumb href="#none"><IMG height=67 alt="" src="http://images.ijjimax.com/v3/drift/itemshop/items/i_g_c_00002.gif" width=67></A> <DL> <DT>Glossy Sky Blue <DD class=gcoin>9 / 7 Days <DD class=gcoin>17 / 30 Days <DD class=gcoin>34 / 90 Days </DD></DL></DIV><!-- //item --><!-- item detail --> <DIV id=parent3 style="DISPLAY: none"> <UL class=item_detail> <LI id=speed3>Speed </LI> <LI id=accel3>Accel </LI> <LI id=boost3>Boost </LI> <LI class=last id=crash3>Crash </LI></UL></DIV> <P class=item_detail_txt>Glossy Sky Blue: Cool, calm, and commanding. </P><!-- //item detail --> <P><A href="java script:alert('This item is only purchasable inside the game.')"><IMG height=17 alt=BUY src="http://images.ijjimax.com/v3/drift/itemshop/item_layer_buy.gif" width=40 border=0></A> </P> <P class=item_layer_close><A onclick="layerclose('layer_item4')" href="#none"><IMG height=11 alt=CLOSE src="http://images.ijjimax.com/v3/drift/itemshop/item_layer_close.gif" width=11 border=0></A></P></DIV></DIV></DIV></DIV><!-- //item_layer --></LI></UL></DIV> <DIV id=newItemsPanel3 style="DISPLAY: none"> <UL> <LI><SPAN class=item><IMG height=67 alt=thumb src="http://images.ijjimax.com/v3/drift/itemshop/items/i_g_c_00027.gif" width=67><IMG class=layer_new height=32 alt=NEW src="http://images.ijjimax.com/v3/drift/mainrenewal/layer_new.gif" width=32></SPAN> <STRONG>Glossy Red Violet</STRONG> <SPAN class=off_price><IMG height=12 alt="G coin" src="http://images.ijjimax.com/v3/drift/mainrenewal/ico_g.gif" width=11> 10 (7 Days) </SPAN><SPAN class=btn><A href="java script:layerview_main(this,'layer_item5');reqDetailInfoByJson('SKR10499_007','4');"><IMG height=15 alt=DETAILS src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_details.gif" width=55></A> <A href="java script:alert('This item is only purchasable inside the game.')"><IMG height=15 alt=BUY src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_buy.gif" width=32 border=0></A> <!-- item_layer --> <DIV class=main_parentcontainer style="Z-INDEX: 1; POSITION: relative"> <DIV class=layer_position id=layer_item5 style="DISPLAY: none"> <DIV class=item_layer> <DIV class=item_layer_b><!-- item --> <DIV class=item_box><A class=thumb href="#none"><IMG height=67 alt="" src="http://images.ijjimax.com/v3/drift/itemshop/items/i_g_c_00027.gif" width=67></A> <DL> <DT>Glossy Red Violet <DD class=gcoin>10 / 7 Days <DD class=gcoin>20 / 30 Days <DD class=gcoin>40 / 90 Days </DD></DL></DIV><!-- //item --><!-- item detail --> <DIV id=parent4 style="DISPLAY: none"> <UL class=item_detail> <LI id=speed4>Speed </LI> <LI id=accel4>Accel </LI> <LI id=boost4>Boost </LI> <LI class=last id=crash4>Crash </LI></UL></DIV> <P class=item_detail_txt>Glossy Red Violet: Expression of intense fascination. </P><!-- //item detail --> <P><A href="java script:alert('This item is only purchasable inside the game.')"><IMG height=17 alt=BUY src="http://images.ijjimax.com/v3/drift/itemshop/item_layer_buy.gif" width=40 border=0></A> </P> <P class=item_layer_close><A onclick="layerclose('layer_item5')" href="#none"><IMG height=11 alt=CLOSE src="http://images.ijjimax.com/v3/drift/itemshop/item_layer_close.gif" width=11 border=0></A></P></DIV></DIV></DIV></DIV><!-- //item_layer --></LI> <LI><SPAN class=item><IMG height=67 alt=thumb src="http://images.ijjimax.com/v3/drift/itemshop/items/pc_0050s_03.gif" width=67><IMG class=layer_new height=32 alt=NEW src="http://images.ijjimax.com/v3/drift/mainrenewal/layer_new.gif" width=32></SPAN> <STRONG>Ruby aerokit Mk.2</STRONG> <SPAN class=off_price><IMG height=12 alt="G coin" src="http://images.ijjimax.com/v3/drift/mainrenewal/ico_g.gif" width=11> 21 (7 Days) </SPAN><SPAN class=btn><A href="java script:layerview_main(this,'layer_item6');reqDetailInfoByJson('SKR10796_007','5');"><IMG height=15 alt=DETAILS src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_details.gif" width=55></A> <A href="java script:alert('This item is only purchasable inside the game.')"><IMG height=15 alt=BUY src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_buy.gif" width=32 border=0></A> <!-- item_layer --> <DIV class=main_parentcontainer style="Z-INDEX: 1; POSITION: relative"> <DIV class=layer_position id=layer_item6 style="DISPLAY: none"> <DIV class=item_layer> <DIV class=item_layer_b><!-- item --> <DIV class=item_box><A class=thumb href="#none"><IMG height=67 alt="" src="http://images.ijjimax.com/v3/drift/itemshop/items/pc_0050s_03.gif" width=67></A> <DL> <DT>Ruby aerokit Mk.2 <DD class=gcoin>21 / 7 Days <DD class=gcoin>49 / 30 Days <DD class=gcoin>80 / 90 Days </DD></DL></DIV><!-- //item --><!-- item detail --> <DIV id=parent5 style="DISPLAY: none"> <UL class=item_detail> <LI id=speed5>Speed </LI> <LI id=accel5>Accel </LI> <LI id=boost5>Boost </LI> <LI class=last id=crash5>Crash </LI></UL></DIV> <P class=item_detail_txt>An aeroset created to customize stats for your needs. Equipped after completing its setting. (Right-Click on item after purchase to go into settings) </P><!-- //item detail --> <P><A href="java script:alert('This item is only purchasable inside the game.')"><IMG height=17 alt=BUY src="http://images.ijjimax.com/v3/drift/itemshop/item_layer_buy.gif" width=40 border=0></A> </P> <P class=item_layer_close><A onclick="layerclose('layer_item6')" href="#none"><IMG height=11 alt=CLOSE src="http://images.ijjimax.com/v3/drift/itemshop/item_layer_close.gif" width=11 border=0></A></P></DIV></DIV></DIV></DIV><!-- //item_layer --></LI></UL></DIV></DIV> <DIV class=section_sub3> <H2><IMG height=10 alt="THIS WEEK'S PACKAGE ITEM" src="http://images.ijjimax.com/v3/drift/mainrenewal/h_this_weeks_package_item.gif" width=150></H2> <UL> <LI><IMG height=67 alt=thumb src="http://images.ijjimax.com/v3/drift/itemshop/items/i_d_s_003.gif" width=67> <SPAN>Mitron Wing (30 days)</SPAN> </LI> <LI><IMG height=67 alt=thumb src="http://images.ijjimax.com/v3/drift/itemshop/items/Tire_Ply0003.gif" width=67> <SPAN>OZ (30 days)</SPAN> <SPAN class=layer_add></SPAN></LI> <LI><IMG height=67 alt=thumb src="http://images.ijjimax.com/v3/drift/itemshop/items/i_d_n_00005.gif" width=67> <SPAN>Red Neon (30 days)</SPAN> <SPAN class=layer_add></SPAN></LI></UL></DIV> <DIV class=section_sub4><SPAN><IMG class=sale_percentage height=32 alt=50% src="http://images.ijjimax.com/v3/drift/mainrenewal/img_percentage_50.gif" width=82></SPAN> <SPAN class=past_price>78 G coin</SPAN> <SPAN class=sale_price><EM>39</EM> G coin</SPAN> <DIV class=btn><A href="/shop/package.nhn"><IMG height=15 alt=BUY src="http://images.ijjimax.com/v3/drift/mainrenewal/btn_buy.gif" width=32></A></DIV></DIV></DIV><!-- //item list --></DIV><!-- //contents area --><!-- aside area --> <DIV class=aside style="Z-INDEX: 1; POSITION: relative"><!-- signin --> <DIV id="signinfalse?'2':''"> <script language=javascript> function popuserinfo() { var win = openSimpleFrameWindow("/userinfo.nhn?m=popUserLicense","_blank","653","620"); } </SCRIPT> <!-- signin --> <DIV id=signin><!-- before sign-in signin_form_area --> <DIV id=signin_form_area><!-- Sign-in Form --><IFRAME id=keyframe style="DISPLAY: none" name=keyframe src="http://login.ijji.com/common/scripts/securelogin/keyframe.html" frameBorder=0 width=0 height=0></IFRAME> <script language=javascript> var keystr = null; var keys = null; var sessionkey = null; var keyname = null; var evalue = null; var nvalue = null; </SCRIPT> <script src="/common/scripts/securelogin/rsa/jsbn.js" type=text/javascript></SCRIPT> <script src="/common/scripts/securelogin/rsa/prng4.js" type=text/javascript></SCRIPT> <script src="/common/scripts/securelogin/rsa/rng.js" type=text/javascript></SCRIPT> <script src="/common/scripts/securelogin/rsa/rsa.js" type=text/javascript></SCRIPT> <script src="/common/scripts/securelogin/rsa/base64.js" type=text/javascript></SCRIPT> <script src="/common/scripts/securelogin/AC_OETags.js" type=text/javascript></SCRIPT> <script src="/common/scripts/securelogin/flashcommunication.js" type=text/javascript></SCRIPT> <script src="/common/scripts/securelogin/key.js" type=text/javascript></SCRIPT> <script src="/common/scripts/securelogin/etc.js" type=text/javascript></SCRIPT> <script src="/common/scripts/securelogin/init.js" type=text/javascript></SCRIPT> <script src="/common/scripts/securelogin/login.js" type=text/javascript></SCRIPT> <script language=javascript> dcLoginForm('http://drift.ijji.com/index.nhn'); </SCRIPT> <DIV id=loginerr1 style="DISPLAY: none; FONT-SIZE: 11px; font-color: #000000"><BR>Can't use secure login.<BR><BR><A href="java script:setMsgViewNetwork();">[Normal Login]</A></DIV> <DIV id=loginerr2 style="DISPLAY: none; FONT-SIZE: 11px; font-color: #000000"><BR>Can't use secure login.<BR><BR><A href="java script:setMsgViewFlash();">[Normal Login]</A></DIV> <DIV id=loginerr3 style="DISPLAY: none; FONT-SIZE: 11px; font-color: #000000"><BR>Can't use secure login.<BR><BR><A href="java script:setMsgViewBrowser();">[Normal Login]</A></DIV> <DIV id=CapslockInfo style="DISPLAY: none; Z-INDEX: 500; LEFT: -62px; OVERFLOW: hidden; WIDTH: 176px; POSITION: absolute; TOP: 55px; HEIGHT: 30px"></DIV>
-
oh i didnt know xD <FORM id=loginform name=loginform onsubmit=entersubmit_security() action="" method=post AUTOCOMPLETE="off"><INPUT id=turtle type=hidden name=turtle> <INPUT id=keyname type=hidden name=keyname> <INPUT id=pwdObj type=hidden value=earthworm name=earthworm> <INPUT id=seculogin type=hidden value=true name=seculogin> <INPUT type=hidden value=http://drift.ijji.com/index.nhn name=nextURL> <INPUT type=hidden name=nxtURL> <INPUT type=hidden name=hanilogin> <INPUT type=hidden name=force> <INPUT type=hidden name=secukey> <INPUT type=hidden value=2 name=secutype> <INPUT id=ssl type=hidden name=ssl> <INPUT type=hidden value=login name=m> <!-- text box and submit button --> <DIV id=useridandpasswordbox_area> <DIV class=login01 id=flashTr style="DISPLAY: block; LEFT: 0px; PADDING-TOP: 1px; POSITION: absolute; TOP: 0px"> <OBJECT id=login codeBase=http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0 height=40 width=111 align=middle classid=clsid:d27cdb6e-ae6d-11cf-96b8-444553540000><PARAM NAME="_cx" VALUE="2937"><PARAM NAME="_cy" VALUE="1058"><PARAM NAME="FlashVars" VALUE=""><PARAM NAME="Movie" VALUE="/common/scripts/securelogin/commonLoginF.swf"><PARAM NAME="Src" VALUE="/common/scripts/securelogin/commonLoginF.swf"><PARAM NAME="WMode" VALUE="Window"><PARAM NAME="Play" VALUE="0"><PARAM NAME="Loop" VALUE="-1"><PARAM NAME="Quality" VALUE="High"><PARAM NAME="SAlign" VALUE="LT"><PARAM NAME="Menu" VALUE="0"><PARAM NAME="Base" VALUE=""><PARAM NAME="AllowScriptAccess" VALUE="always"><PARAM NAME="Scale" VALUE="NoScale"><PARAM NAME="DeviceFont" VALUE="0"><PARAM NAME="EmbedMovie" VALUE="0"><PARAM NAME="BGColor" VALUE="929292"><PARAM NAME="SWRemote" VALUE=""><PARAM NAME="MovieData" VALUE=""><PARAM NAME="SeamlessTabbing" VALUE="1"><PARAM NAME="Profile" VALUE="0"><PARAM NAME="ProfileAddress" VALUE=""><PARAM NAME="ProfilePort" VALUE="0"><PARAM NAME="AllowNetworking" VALUE="all"><PARAM NAME="AllowFullScreen" VALUE="false"> <embed swLiveConnect="true" quality="high" bgcolor="#929292" wmode="window" src="/common/scripts/securelogin/commonLoginF.swf" width="111" height="40" name="login" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </OBJECT></DIV> <DIV class=login01 id=generalTr style="DISPLAY: none"><!-- userrid --> <DIV id=userid_textbox_area><INPUT id=idObj onkeydown=entersubmit_key_Han(0) title=UserID style="BACKGROUND: url(http://images.ijjimax.com/v3/login/dcpage_txt01.png) #929292 no-repeat 5px 1px" onfocus="this.style.backgroundImage=''" tabIndex=1 maxLength=20 name=turtle2 ?> </DIV><!-- //userrid --><!-- password --> <DIV id=passwd_textbox_area><INPUT onkeypress=checkCapsLockPre(loginform);setKeyInfo(); id=pwdObj2 onkeydown=entersubmit_key_security(1,event) title=Password style="BACKGROUND: url(http://images.ijjimax.com/v3/login/dcpage_txt02.png) #929292 no-repeat 5px 1px" onfocus="this.style.backgroundImage='';" tabIndex=2 type=password maxLength=20 value="" name=earthworm2> </DIV><!-- //password --></DIV> <DIV id=loginbtn_area><A href="java script:loginClick()"><IMG id=submitTD style="DISPLAY: inline" alt=Submit src="http://images.ijjimax.com/v3/drift/teaser/main/r_signin_btnlogin.gif"></A> </DIV></DIV><!-- //text box and submit button --><!-- checkbox area --> <DIV id=securesignin_area> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR> <TD class=td_checkbox><INPUT id=secure type=checkbox onchange=java script:changeSecure(document.form); value=true name=secure></TD> <TD class=td_secure_txt>Secure Sign In</TD></TR></TBODY></TABLE></DIV></FORM>
-
hello?
-
How get the loading page data in IE
Gillboss replied to Gillboss's topic in AutoIt General Help and Support
ok i will, ty =] -
How get the loading page data in IE
Gillboss replied to Gillboss's topic in AutoIt General Help and Support
i have quetion, there is way that i can get the correct URL? because in my script, when i click submit, the address become different -
How get the loading page data in IE
Gillboss replied to Gillboss's topic in AutoIt General Help and Support
woohahaha cool thx =] -
How get the loading page data in IE
Gillboss replied to Gillboss's topic in AutoIt General Help and Support
i dont know how work with Dlls.. :S -
how can i get the data of loading page in IE that existing in bottom of window? here is picture of what i mean: Thanks
-
or look at that: #include <IE.au3> $oIE = _IECreate ("http://login.ijji.com/login.nhn", 1) _IELoadWait ($oIE) $oForm = _IEFormGetObjByName ($oIE, "loginform") $oQuery = _IEFormElementGetObjByName ($oForm, "earthworm2") _IEFormElementSetValue ($oQuery, "AutoIt IE.au3") its not show any Error, but its not fill the password input..
-
yes im.. i got it from Debug Bar
-
>"D:\Program Files\AutoIt3\SciTE\..\autoit3.exe" /ErrorStdOut "D:\Documents and Settings\Gil\שולחן העבודה\dsaasd.au3" --> IE.au3 Warning from function _IEFormGetObjByName, $_IEStatus_NoMatch --> IE.au3 Error from function _IEFormElementGetObjByName, $_IEStatus_InvalidDataType --> IE.au3 Error from function _IEFormElementSetValue, $_IEStatus_InvalidDataType >Exit code: 0 Time: 3.220 what is mean?
-
i make script that should insert user name to input box at some website: #include <IE.au3> $sEmployeeID = "abc" $sPassword = "abc123" $oIE = _IECreate ("http://drift.ijji.com/", 1) _IELoadWait ($oIE) $oForm = _IEFormGetObjByName ($oIE, "loginform") $oText = _IEFormElementGetObjByName ($oForm, "turtle2") _IEFormElementSetValue($oText, $sEmployeeID) but its not insert =/ i dont know what the problem.. some1?
-
what about this? http://www.xtremevbtalk.com/showthread.php?t=265768 there is solution in autoit?
-
not working to me :S i get $songname = 0 can u test it on your pc? thx
-
oh little quetion, if Winamp running on hiding mode, can i get track info? i guess not..
-
yes i know this script, and i have one for itunes, but what about WMP?
-
lol how do all that? example can help me
-
not found :S
-
its not answer my quetion.. its just change personal message, i need get the track name and artist name not trought MSN
-
When Itunes, WMP, or Winamp play song, they send to MSN Messenger which song playing. How can i get this current song playing? thanks
-
there is more guy that intersted it: http://www.autoitscript.com/forum/index.ph...st&p=353728 but there is no answer :S and not it: #include <GUIConstants.au3> ; == GUI generated with Koda ==); $TrackName = GUICreate("Track Name", 425, 54, 193, 161) $Currtrack = GUICtrlCreateLabel("Current Track", 8, 16, 290, 17) GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif") $GetTr = GUICtrlCreateButton("GetTrackName", 320, 8, 97, 33, 0) GUISetState(@SW_SHOW) $WMP = ObjCreate("wmplayer.ocx") GUISetState(@SW_SHOW) While 1 $msg = GuiGetMsg() Select Case $msg = $GetTr $TrackName = $WMP.GetMediaInfoString() GUICtrlSetData ($Currtrack,$TrackName) EndSelect Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case Else ;;;;;;; EndSelect WEnd