PDA

View Full Version : Is there a script available that...


Big_Ray
12-08-2001, 01:36 PM
Hello,
Does anyone know if there is a script that rotates the URL of the exit pop up from a page instead of having the same URL popping up?

Thanks,
Big_Ray

B00M
12-08-2001, 01:47 PM
Hey Ray,

You use a java script like this

<SCRIPT LANGUAGE="JavaScript">


<!--

var f=1;

function leave()

{

if (f==1)

{

var time = new Date();

var mtime = time.getMinutes();

var curl="http";

var irez=mtime%7;

if(irez==0) {

curl="http://www.bigins.com"; }

if(irez==1) {

curl="http://www.wildthing.com"; }

if(irez==2) {

curl="http://www.rawporn.com/cgi-bin/autorank/rankem.cgi?id=bigins"; }

if(irez==3) {

curl="http://www.pureamateurs.com"; }

if(irez==4) {

curl="http://www.datebroker.com"; }

if(irez==5) {

curl="http://www.hotbreasts.com"; }

if(irez==6) {

curl="http://www.viewporn.com"; }

var econsole = window.open('','Sexxx','toolbar=1,location=1,statu s=1,scrollbars=1,resizable=1,directories=1,menubar =1');

econsole.blur();

econsole.location = curl;

}

}

//-->


</SCRIPT>

Thxs,
Jeff

Big_Ray
12-08-2001, 06:50 PM
Thank You Jeff,
Big_Ray