var RecaptchaOptions = {
	theme: 'clean'	
};

function setcookie(name,value) {
    document.cookie = name + "=" + value;
}
function getcookie(name) {
    var key = document.cookie.indexOf(name);
    if(key == -1 || !name) {
        return false;
    }
    var start = key+name.length+1;
    var end = document.cookie.indexOf(';',key);
    if(end == -1) {
        end = document.cookie.length;
    }
    return unescape(document.cookie.substring(start,end));
}
function deletecookie(name) {
    document.cookie = name + "=; expires=Thu, 01-Jan-70 00:00:01 GMT; path=/";
}
function restyle(myID,myClass) {           
    if (myElement = document.getElementById(myID)) {
        if (document.all) {
            // IE
            myElement.className = myClass;
        } else {                
            myElement.setAttribute("class",myClass);
        }                       
    }                           
}  
function examples()
{       
    window.open('examples.html','Examples','hotkeys,scrollbars=yes,width=475,height=500');
}  
function hostname()
{       
    window.open('hostname.html','Hostname','hotkeys,scrollbars=yes,width=475,height=500');
}  
