// JavaScript Document$(document).ready(function(){	if(OCCURANCE == 'hour') {		HOURS = 1;	}	else if(OCCURANCE == 'day') {		HOURS = 24;	}	else if(OCCURANCE == 'month') {		HOURS = 24 * 30;	}	else if(OCCURANCE == 'year') {		HOURS = 24 * 30 * 365;	}								   					   						   	//get cookie	var cookie = $.cookie(POPUP_NAME);		//set cookie	if(cookie == null && OCCURANCE != 'visit') {		var date = new Date();		date.setTime(date.getTime() + (1 * HOURS * 60 * 60 * 1000));		$.cookie(POPUP_NAME, 'value', { path: '/', expires: date });		var SHOW_POP_UP = true;	}	else if(OCCURANCE == 'visit') {		var SHOW_POP_UP = true;	}	else {		var SHOW_POP_UP = false;	}		if(SHOW_POP_UP) {		//DISPLAY POPUP		if(TRIGGER == 'beforeunload') {			$('a').bind('mousedown', function(){						var href = $(this).attr('href');								$.modal($('#pop-up').html());								$('.simplemodal-close').bind('mousedown', function(){					document.location.href = href;				});											$(this).delay(OPEN_TIMER*1000,function(){					document.location.href = href;				});												});		}		else if(TRIGGER == 'load') {			$(this).delay(LOAD_DELAY*1000,function(){				$.modal($('#pop-up').html());								$(this).delay(OPEN_TIMER*1000,function(){					$.modal.close();				});				});		}	}});		 