



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('popupm') == null){
document.write('<style type="text/css">');
document.write('#slide_up { overflow: hidden; display: block; width: 200px; height: 200px; z-index: 10000; position: absolute; bottom: 0px; right: 2px;}');
document.write('#close_popup{ position: absolute; bottom:0px; right:5px; z-index: 10001;}  #close_popup a {font-family:verdana;color:#fff;font-size:13px;font-weight:bold;line-height:25px;text-decoration:none;} #close_popup a:hover {text-decoration:underline;}');
document.write('</style>');
document.write('<div id="close_popup"><a onclick="javascript:closeFor24();" style="cursor:pointer;">CLOSE X</a></div>');
document.write('<div id="slide_up"><img id="idea_img" src="img/idea.gif" alt="" border="0"/></div>');
var idea_img = document.getElementById("idea_img"); 
var banners = new Array('1', '2'); 
num_records = banners.length; 
var nextBanner_index = Math.ceil(Math.random() * num_records - 1);
 if(nextBanner_index==1){
 idea_img.src="img/idea.gif"; } 
 else {
 idea_img.src="img/idea.gif"; }
 
 
 
 window.onload = document.onload = window.onscroll = document.onscroll = window.onresize = document.onresize = function() {
 var tmpdiv = document.getElementById("slide_up");
 var close_popup=document.getElementById("close_popup");
 if (tmpdiv) {
 var h = window.innerHeight ? window.innerHeight : (document.documentElement.clientHeight == 0 ? document.body.clientHeight : document.documentElement.clientHeight);
 var w = window.innerWidth ? window.innerWidth : (document.documentElement.clientWidth == 0 ? document.body.clientWidth : document.documentElement.clientWidth);
 var s = window.pageYOffset ? window.pageYOffset : (document.documentElement.scrollTop == 0 ? document.body.scrollTop : document.documentElement.scrollTop);
 var sw = document.documentElement.scrollWidth == 0 ? document.body.scrollWidth : document.documentElement.scrollWidth;
 
 //close_popup.style.top = s + (h - 25) + "px";
 var scroll = 0; if(navigator.userAgent.indexOf('MSIE') !=-1){ scroll = 21;}
 close_popup.style.top = s + (h - tmpdiv.clientHeight  - 25 )  + "px";
 tmpdiv.style.top = s + (h - tmpdiv.clientHeight )  + "px";
 }
 };
 
 function closeFor24(){ 
	daCreateCookie('popupm', 'true', 24);
	document.getElementById('slide_up').style.display="none";
 document.getElementById('close_popup').style.display="none"; }
 
 }


