function call_user_now(uid) {
	if (uid=='') { uid = 18; }
	if (navigator.userAgent.indexOf('MSIE') != -1) {
		ph1 = document.all.item("ph1").value;
		ph2 = document.all.item("ph2").value;
		ph3 = document.all.item("ph3").value;
	} else {
		ph1 = document.getElementById('ph1').value;
		ph2 = document.getElementById('ph2').value;
		ph3 = document.getElementById('ph3').value;
	}
	ph = ph1 +''+ ph2 +''+ ph3;
	if (ph && ph.length!=10)
	{
		ph = prompt("Please enter a valid 10 digit phone number. (No dashes or parentheses, For Ex: 5553334444)",ph);
	}

	if (ph && ph.length==10 ) {
		//alert("Now calling: "+ph);
		window.location="http://1clicktalk.com/api/click2call_handler.php?notification_from="+ph+"&user_id="+uid+"&notify_action=1&dcf_service_id=3&dcf_service_name=1clicktalk.com&redirect_url=http://1clicktalk.com/pop_up_thanks.html";
		return true;
	} else {
		alert("Sorry, you must enter a valid 10 digit number and try again");
		return false;
	}
}

