
	function openwindow(url,width,height)
	{
		window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='
			+ width + ',height=' + height);
	}

	
	var pingAJAX;
	var _statusControlName;

    function ping( URL,statusControlID,message)
    {
		_statusControlName = statusControlID;
		
        if ( window.XMLHttpRequest ) {
	       pingAJAX = new XMLHttpRequest();
        } else {
	       pingAJAX = new ActiveXObject("MSXML2.XMLHTTP");
        }

        pingAJAX.open( "GET", URL, true );
        pingAJAX.send(null);
        
        document.getElementById(_statusControlName).innerHTML = message;
        
    }

    function Rcertify()  
    { 
	    popupWin = window.open('http://www.bbbonline.org/cks.asp?id=10301049185628187', 'Participant','location=yes,scrollbars=yes,width=550,height=600');  
	    window.name = 'opener'; 
    }  
