function OnLoaded() {
var rectA = new Rectangle(50, 60);
var rectB = new Rectangle(85, 15);
rectA.name = "Новый прямоугольник";
document.write("rectA.name = " + rectA.name + "</br>");
document.write("rectB.name = " + rectB.name + "</br>");
}
function Rectangle(width, height) {
this.width = width;
this.height = height;
Rectangle.prototype.name = "Прямоугольник";
}
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script src="Scripts/ProtoHuioto.js" type="text/javascript"></script>
<title>Моя первая веб-страница</title>
</head>
<body onload="OnLoaded()">
<h1>Заголовок страницы</h1>
<p id="txt">Основной текст.</p>
</body>
</html>