function popUp(path) {
    features = "width=625,height=485,scrollbars=yes,fullscreen=no,toolbar=no,status=no,menubar=no,resizable=no,directories=no,location=no";
	newWindow=window.open(path, 'popup', features);
	newWindow.focus();
}

function popUpB(path) {
    features = "width=825,height=630,scrollbars=yes,fullscreen=no,toolbar=no,status=no,menubar=no,resizable=no,directories=no,location=no";
	newWindow=window.open(path, 'popup', features);
	newWindow.focus();
}

function popUpC(path) {
    features = "width=750,height=570,scrollbars=yes,fullscreen=no,toolbar=no,status=no,menubar=no,resizable=no,directories=no,location=no";
	newWindow=window.open(path, 'popup', features);
	newWindow.focus();
}

