function popcallfirst() {
	openpop("/callfirst.html",596,160,"cfwin");
}


function openpop(url,w,h,n) {
    var url=url;
    var height = h;
    var width = w;
    var wname = n;
    var winleft = (screen.width - width) / 2;
    var winUp = (screen.height - height) / 2;
    winProp = 'width='+width+',height='+height+',left='+winleft+',top='+winUp+',scrollbars=no,resizable=yes'
    newwin = window.open(url, wname, winProp);
}


function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 
