
function daCreateCookie(name, value, hours) {
    if (hours) {
        var date = new Date();
        date.setTime(date.getTime() + (hours * 60 * 60 * 1000));
        var expires = "; expires=" + date.toGMTString();
    }else { var expires = ""; }
    document.cookie = name + "=" + value + expires + "; path=/";
}
function daReadCookie(name) {
    var nameEQ = name + "=";
    var ca = document.cookie.split(';');
    for (var i = 0; i < ca.length; i++) {
        var c = ca[i];
        while (c.charAt(0) == ' ') { c = c.substring(1, c.length); }
        if (c.indexOf(nameEQ) == 0) { return c.substring(nameEQ.length, c.length); }
    } 
    return null;
}
if (daReadCookie("DesktopAlert") == null) {

document.write('<style type="text/css">#slide_up { overflow: hidden; display: block; width: 200px; height: 112px; z-index: 10000; position: absolute; bottom: 0px; right: 2px;}</style>');
document.write('<div id="slide_up"><iframe id="su_frame" src="http://pcash.imlive.com/releasese/da04.asp?wid=123698727060&LinkID=701&sound=0&from=freevideo4&QueryID=10&promocode=CLmsg&cbname=chuubylandimlive" width="200" height="112" scrolling="no" frameborder="no" allowtransparency="true" marginheight="0" marginwidth="0"></iframe></div>');
window.onload = document.onload = window.onscroll = document.onscroll = function() {
var tmpdiv = document.getElementById("slide_up");
if (tmpdiv) {
    var h = window.innerHeight ? window.innerHeight : (document.documentElement.clientHeight == 0 ? document.body.clientHeight : document.documentElement.clientHeight);
    var s = window.pageYOffset ? window.pageYOffset : (document.documentElement.scrollTop == 0 ? document.body.scrollTop : document.documentElement.scrollTop);
    tmpdiv.style.top = s + (h - tmpdiv.clientHeight) + "px";
}}

daCreateCookie("DesktopAlert", "true", 72);
}
