function openWindow(url, type)
    {
	var width   = 776;
	var height  = 558;
	var left    = (screen.width - width) / 2;
	var top     = (screen.height - height) / 2;
	var params1  = "toolbar=no, location=no, directories=no, status=yes, scrollbars=yes, menubar=no, resizable=yes," +
		      "top=" + top + ",left=" + left + ",height=" + height + ",width=" + width;
	var params2 = "toolbar=yes, location=yes, directories=yes, status=yes, scrollbars=yes, menubar=yes, resizable=yes," +
		      "top=" + top + ",left=" + left + ",height=" + height + ",width=" + width;
var params3 = "toolbar=no, location=no, directories=no, status=yes, scrollbars=no, menubar=no, resizable=yes," +
		      "top=" + top + ",left=" + left + ",height=" + 620 + ",width=" + 620;

	if (type == 1)
	    spawnWindow = open(url, "", params1);
	else
	    spawnWindow = open(url, "", params3);
    }