
function popUp(path) {
    features = "width=500,height=550,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 popUpScroll(path) {
    features = "width=500,height=550,scrollbars=yes,fullscreen=no,toolbar=no,status=no,menubar=no,resizable=yes,directories=no,location=no";
	newWindow=window.open(path, 'popup', features);
	newWindow.focus();
}

function popUpBigger(path) {
    features = "width=630,height=700,scrollbars=yes,fullscreen=no,toolbar=no,status=no,menubar=no,resizable=no,directories=no,location=no";
	newWindow=window.open(path, 'popup', features);
	newWindow.focus();
}

