function GameScreen(pId, pWidth, pHeight, pXoff, pYoff){
	this.id = pId;
	this.width = pWidth;
	this.height = pHeight;
	this.xOff = pXoff;
	this.yOff = pYoff;
	this.border = 0;
	this.writeHTML = function(pName){
		document.write("<div id=\""+pName+"\" style=\"background:#000000;position:absolute;top:0;left:0;");
		document.write("width:"+TheGame.screen.width+";height:"+TheGame.screen.height+";top:"+TheGame.screen.xOff+";left:"+TheGame.screen.yOff+";");
		document.write("overflow:hidden");
		document.write("\"></div>");
	}
}
