Warning: gzuncompress() [function.gzuncompress]: data error in /home/gettraffic.com/im/fpabim-na.php on line 4
var profile_url=new Array();
var profile_text=new Array();
var profile_title=new Array();
var profile_image=new Array();
var myProfileCount=6;
profile_url[0]="http://signup.lonelycheatingwives.com/cgi/click?a=951320&s=187&p=1&j=rayray.html";
profile_title[0]="New Instant Message";
profile_image[0]="http://cdn-w.gettraffic.com/gettraffic/ads/im/images/1gdffv.gif";
profile_text[0]="Hi my husband just left and im alone..can you get on messenger and chat with me?";
profile_url[1]="http://signup.lonelycheatingwives.com/cgi/click?a=951320&s=187&p=1&j=rayray.html";
profile_title[1]="New Instant Message";
profile_image[1]="http://cdn-w.gettraffic.com/gettraffic/ads/im/images/2g45e.gif";
profile_text[1]="Hia! Want to share pictures with me? I have some more inside my profile...some are naughty.";
profile_url[2]="http://signup.lonelycheatingwives.com/cgi/click?a=951320&s=187&p=1&j=rayray.html";
profile_title[2]="New Instant Message";
profile_image[2]="http://cdn-w.gettraffic.com/gettraffic/ads/im/images/3fgjjk.gif";
profile_text[2]="Hey love, my husband is away for a week and im looking to date while he is gone.";
profile_url[3]="http://signup.lonelycheatingwives.com/cgi/click?a=951320&s=187&p=1&j=rayray.html";
profile_title[3]="New Instant Message";
profile_image[3]="http://cdn-w.gettraffic.com/gettraffic/ads/im/images/4hfgfs.gif";
profile_text[3]="I am tired of Richard he drew the last straw so i signed up to this site to find a real man. Would you like to talk to me instead?";
profile_url[4]="http://signup.lonelycheatingwives.com/cgi/click?a=951320&s=187&p=1&j=rayray.html";
profile_title[4]="New Instant Message";
profile_image[4]="http://cdn-w.gettraffic.com/gettraffic/ads/im/images/5dfgqq.gif";
profile_text[4]="I hate crying for him so I'm looking for someone to take me out and forget about everything for one night.";
profile_url[5]="http://signup.lonelycheatingwives.com/cgi/click?a=951320&s=187&p=1&j=rayray.html";
profile_title[5]="New Instant Message";
profile_image[5]="http://cdn-w.gettraffic.com/gettraffic/ads/im/images/6ggfs.gif";
profile_text[5]="Hey sexy I'm alone in bed right now chatting online looking for the next guy to date. oxox";
var loadDelay=0000; // how long after page load before starts rolling in
var unloadDelay=10000; // how long it stays on page
var rollSpeed=30; // speed that it rolls in - out, higher is slower
// You shouldnt change these below unless your sure what your doing
var myX = 20;
var myY = 70;
var myOffset = 0;
var myMax = 49;
var myCount = 0;
var myDirection = -1;
var scrollOffset=0;
var restart=false;
var myURL="";
var randomnumber=0;
var myObj;
var winW = 630, winH = 460;
function redirectIM( ) {
window.open( myURL, '_self' );
}
function restartPop( ) {
restart=true;
startPop( myObj );
}
function startPop( obj )
{
myObj = obj;
obj = document.getElementById(obj);
if (parseInt(navigator.appVersion)>3) {
if (navigator.appName=="Netscape") {
winW = window.innerWidth;
winH = window.innerHeight + window.pageYOffset + 4;
}
if (navigator.appName.indexOf("Microsoft")!=-1) {
winW = document.body.offsetWidth;
winH = document.body.offsetHeight + document.body.scrollTop + 4;
}
}
randomnumber=Math.floor(Math.random()*( myProfileCount ));
//alert( "Random" + randomnumber );
thisTitle=profile_title[randomnumber];
thisURL=profile_url[randomnumber];
thisImage=profile_image[randomnumber];
thisText=profile_text[randomnumber];
myURL=thisURL;
// thisTitle="title";
// thisURL="url";
// thisImage="image";
// thisText="text";
obj.innerHTML='';
obj.innerHTML+='' + thisTitle + '
';
obj.innerHTML+='x
';
obj.innerHTML+='';
obj.innerHTML+='' + thisText + '
';
obj.innerHTML+='';
//alert( obj.innerHTML );
setTimeout("setVisible( )",loadDelay);
}
function setVisible()
{
obj = myObj;
obj = document.getElementById(obj);
if (parseInt(navigator.appVersion)>3) {
if (navigator.appName=="Netscape") {
winW = window.innerWidth;
winH = window.innerHeight + window.pageYOffset + 4;
}
if (navigator.appName.indexOf("Microsoft")!=-1) {
winW = document.body.offsetWidth;
winH = document.body.offsetHeight + document.body.scrollTop + 4;
}
}
//if ( (document.body.scrollTop > 0 ) ) winH += 120
//if ( document.body.scrollTop > 0 ) scrollEvent();
theLeft = winW - 222;
theTop = winH;
//alert( "Left:" + theLeft );
//alert( "Top:" + theTop ) ;
obj.style.left = theLeft + 'px' ;
obj.style.top = theTop + 'px' ;
//obj.style.height = '0px' ;
myX = theLeft;
myY = theTop;
obj.style.visibility = (obj.style.visibility == 'visible') ? 'hidden' : 'visible';
//if ( document.body.scrollTop > 0 ) scrollEvent();
setTimeout("moveIt( )",rollSpeed);
}
function moveIt()
{
obj = document.getElementById(myObj);
myOffset += .1 * myDirection;
myCount += 1;
//alert( "Direction:" + myDirection + "myOffset:" + myOffset + "myY:" + myY + "Max:" + myMax ) ;
if ( myCount < myMax ) {
if ( myDirection==1 ) myY = myY - myOffset;
else myY = myY + myOffset;
obj.style.left = myX + 'px' ;
obj.style.top = myY + 'px' ;
//obj.style.height = myOffset + 'px' ;
setTimeout("moveIt()",rollSpeed);
}
else {
if ( myDirection == 1 ) {
obj.style.visibility = 'hidden';
//obj.style.height = '0px' ;
obj.style.left = '0px' ;
obj.style.top = '0px' ;
resetRoll();
}
else {
//alert( "Switch Direction" );
myDirection = 1;
myCount = 0;
setTimeout("moveIt()",unloadDelay);
}
}
}
function resetRoll()
{
myX = 20;
myY = 70;
myOffset = 0;
myMax = 49;
myCount = 0;
myDirection = -1;
setTimeout("restartPop()",loadDelay);
}
function scrollEvent()
{
if ( ( obj ) && (obj.style.visibility != 'visible') ) return;
//scrollOffset = 460 + scrollH;
//alert( "winH(b4):" + winH );
if (parseInt(navigator.appVersion)>3) {
if (navigator.appName=="Netscape") {
winW = window.innerWidth;
winH = window.innerHeight + window.pageYOffset + 4;
}
if (navigator.appName.indexOf("Microsoft")!=-1) {
winW = document.body.offsetWidth;
winH = document.body.offsetHeight + document.body.scrollTop + 4;
}
}
//alert( "winH(af):" + winH );
if ( myDirection==1 ) myY = winH + myOffset - 110;
else myY = winH - myOffset - 110;
obj.style.left = myX + 'px' ;
obj.style.top = myY + 'px' ;
//obj.style.top = myY + 'px' ;
//winW = winW - scrollW;
}
document.write('\n');