// JavaScript Document

var Window = {
	Pop : function(name, uri,height,width)
	{
		var newWindow = window.open(uri,name, "height="+height,"width="+width+",resizable=no,scrollbars=yes,location=no,menubar=no,toolbar=no");
		newWindow.opener = self;
		return newWindow;
	}
};
