function hiddenWinObj() {
	this.win = document.getElementById("hiddenWindow")
	return this
}

hiddenWinObj.prototype.changeURL = function(URL) {
	this.win.src = URL
}
