View Single Post
Old 01-30-2013, 08:07 AM   PM User | #3
rrwirks
New to the CF scene

 
Join Date: Jan 2013
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
rrwirks is an unknown quantity at this point
Yeah, i got it running by myself, but thanks for the help

Code:
function checkCount() {
  var count = GetCookie('count');
  if (count == null) {
    count=1;
    SetCookie('count', count, exp);
	setTimeout(function() {
		window.open(page, "", windowprops);
	}, 120000);

Last edited by rrwirks; 01-30-2013 at 08:12 AM.. Reason: EDIT: solution
rrwirks is offline   Reply With Quote