function goTo(page) {
	window.document.location.replace(page);
}

function openCvvWindow(url) {
    if ((typeof(cvvWin) == "undefined") || (cvvWin.closed)) {
        cvvWin=window.open(url,"cvvWin","status=no,resizable=no,scrollbars=yes,menubar=no,toolbar=no,location=no,width=600,height=450");
        //cvvWin=window.open(url,"cvvWin","status=yes,resizable=yes,scrollbars=yes,menubar=yes,toolbar=yes,location=yes,width=600,height=450");
        cvvWin.focus();
    } else {
        cvvWin.document.open();
        cvvWin.document.location.replace(url);
        cvvWin.document.close();
        cvvWin.focus();
    }
}
