document.write(''); document.write('
HEATHER wants to chat with you !
Heather (32)
Mcpherson
ACCEPT INVITATION
'); document.write('
HEATHER wants to chat with you !
'); document.write(''); var imad = 1; var imadInterval = ''; var imid = 'Table' // div id var speed = 10; var divheight = 185; var mintime = 1000 //between the ads var maxtime = 30000 ////between the ads function startimad() { imadInterval = setInterval("ShowIMad('" + imid + "'," + speed + ")", 10); //start! } setTimeout("show()", 4000); var win=null; function NewWindow(mypage,myname,w,h,scroll,pos) { if(pos=="random") { LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100; } if(pos=="center") { LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100; } else if((pos!="center" && pos!="random") || pos==null) { LeftPosition=0;TopPosition=20 } settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no'; win=window.open(mypage,myname,settings); } function hide() { imadInterval = setInterval("HideIMad()", 1); } function show() { imadInterval = setInterval("ShowIMad()", 1); } function CloseIMad () { var i = 100; document.getElementById(imid + "_" + imad).setAttribute('style', 'filter:alpha(opacity=' + i + '); -moz-opacity:' + (i/100) + '; -khtml-opacity: ' + (i/100) + '; opacity: ' + (i/100) + '; bottom: 0px;'); var iets = setInterval(function() { i--; if(i>1) { document.getElementById(imid + "_" + imad).style.opacity = (i/100); document.getElementById(imid + "_" + imad).style.MozOpacity = (i/100); document.getElementById(imid + "_" + imad).style.KhtmlOpacity = (i/100); document.getElementById(imid + "_" + imad).style.filter = "alpha(opacity=" + i + ");"; } else { clearInterval(iets); document.getElementById(imid + "_" + imad).setAttribute('style', 'display:none'); }},'2'); } function ShowIMad () { if(!document.getElementById(imid + "_" + imad)) { return false } if(parseInt(document.getElementById(imid + "_" + imad).style.bottom) < 0) { document.getElementById(imid + "_" + imad).style.bottom = (parseInt(document.getElementById(imid + "_" + imad).style.bottom) + speed) + "px"; } else { document.getElementById(imid + "_" + imad).style.bottom = "0px"; clearInterval (imadInterval); } } function HideIMad () { if(parseInt(document.getElementById(imid + "_" + imad).style.bottom) > - divheight) { document.getElementById(imid + "_" + imad).style.bottom = (parseInt(document.getElementById(imid + "_" + imad).style.bottom) - speed) + "px"; } else { imad++; clearInterval (imadInterval); show(); //setTimeout("show()", (Math.floor(Math.random()*maxtime) + mintime)); } }