function openPopup(passedUrl, passedWidth, passedHeight) {
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(passedUrl,'" + id + "','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + passedWidth + ',height=' + passedHeight);");
}

function open_cars_com(passed_url, passed_width, passed_height) 
{
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(passed_url,'" + id + "','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + passed_width + ',height=' + passed_height);");
}

function openGoDaddyPopup(passedUrl) {
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(passedUrl,'" + id + "','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=620,height=350');");
}

//***** REDIR POST FUNCTION *****//
function post_to_url(path, params, method) {
    method = method || "post"; // Set method to post by default, if not specified.    
    
    // The rest of this code assumes you are not using a library.    
    // It can be made less wordy if you use one.    
    
    var form = document.createElement("form");
    form.setAttribute("method", method);
    form.setAttribute("action", path);
    
    for(var key in params) {
        var hiddenField = document.createElement("input");
        hiddenField.setAttribute("type", "hidden");
        hiddenField.setAttribute("name", key);
        hiddenField.setAttribute("value", params[key]);
        
        form.appendChild(hiddenField);
    }    
    
    document.body.appendChild(form);    // Not entirely sure if this is necessary
    form.submit();
}