// this is the script for the popup from voipbuster. 
// replace this with your own popup when you get the chance

    function callMeNow()
    {

	// callback valid or not valid ...	
	// this is an on-page variable
	//var valid = {CALLBACK_VALID};

	var hour_time = '';
	
	if (valid == 0) 
	{
        	window.open(
            	" https://myaccount.voipbuster.com/clx/callmenow.php?username=English-Teaching-Korea",
            	"callmenow",
            	"scrollbars=no, menubar=no, toolbar=no, status=no," +
            	"location=no, resizable=no, width=410,height=360"
        	);
	}else {

		// set the plural for hour
		if ( valid == 1 ){ hour_time = 'hour'; }
		else { hour_time = 'hours'; }

	 	alert("Unfortunately, our offices are closed for the night." +
		 '\n\n' + "They'll be open again in ..."  + valid + " " + hour_time +
		 '\n\n' + "Thank You for your understanding.");
	}

    }
