/**
* ProjectAttributes Constructor
* @comments:
**/
function ProjectAttributes() {

}

/**
* ProjectAttributes doAttr
* @param type	'string'
* @param definition	'string'
* @param action	'string'
* @param doAction	'string'
* @param disabled	'string'
* @comments: 	if the attribute type exists, do something with the
*				attributes
**/
ProjectAttributes.prototype.doAttr = function (type, definition, action, doAction, disabled) {

}

var componentClasses 	= new Array('textimg', 'titletextimg', 'contentInclTxtButton', 'newsTxt', 'newsTxtImg');
var pageContainer		= 'grhr_container';

function hideGame(newclass){
	game		= document.getElementById("GameSWF");
	if (game.style){
		game.className = newclass;
	}
}

function submitEnter(myfield, e, formID) {
	var keycode;

	if (window.event) {
		keycode = window.event.keyCode;
	} else if (e) {
		keycode = e.which;
	} else {
		return true;
	}

	if (keycode == 13) {
		submitActionById(formID);
		return false;
	} else {
		return true;
	}
}