function openwinnowin(theurl, wname) {
		var W=390;
		var H=295;
    var windowW = W;
    var windowH = H;
    var windowX = Math.ceil( (window.screen.width  - windowW) / 2 );
    var windowY = Math.ceil( (window.screen.height - windowH) / 2 );
    var splashWin=window.open(theurl, wname, "left="+windowX+",top="+windowY+",height="+H+",width="+W+",fullscreen=false,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,scrollbar=0");
   	splashWin.focus();
}
function NewWindowPhone(PhoneNumber)
{
openwinnowin("/click-to-talk/Web800_PC.asp?PhoneNumber="+PhoneNumber, "");
}

