// JavaScript funcions

function OpenWin(file, newLoc, newWidth, newHeight) {
	window.open(file,newLoc,"scrollbars=yes,resizable=no,status=no,height=" + newHeight + ",width=" + newWidth);
}
