//BBBOnline Certification

function Rcertify() 
{
popupWin = window.open('http://www.bbbonline.org/cks.asp?id=1031125633837599', 'Participant','location=yes,scrollbars=yes,width=450,height=300'); 
window.name = 'opener';
} 

// Clear email field

	function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value=""
	}
	
// popup window functions
function popWindow(pagename, w, h)
{
if (!w) w=500;
if (!h) h=375;

   plain_window = window.open(pagename,"plain","width=" + w + ",height=" + h + ",resizable,scrollbars");

}

function openwin(picname,w,h)
{

  open_window =

window.open(picname + ".jpg","popup","width="+w+",height="+h+",status,scrollbars");

}

// no right-click
var msg="All Website content Copyright 2006 Brown's On 5th." 
 function click(e) 
 {
    if (document.all) 
    {
       if (event.button == 2) 
       {
          alert(msg);
          return false;
       }
    }
    if (document.layers) 
    {
       if (e.which == 3) 
       {
          alert(msg);
          return false;
       }
    }
 }
 if (document.layers) 
 {
    document.captureEvents(Event.MOUSEDOWN);
 }
 document.onmousedown=click;
