
function getPage(strDomain, strLink, strParams, intContentID, intModuleID, strMenus, strAlias) {
		if (strLink != "") {
			document.location = strLink;
		}
		if (strAlias != "") {

		} else {
			document.location = strDomain + "/" + strParams + "/" + intContentID + "/" + intModuleID + "/" + strMenus + "/";
		}
	}

	function sizeScreen() {
		var clientHeight = document.body.clientHeight;
		var clientWidth = document.body.clientWidth;
		var intWidth, intHeight;
		
		intHeight = clientHeight - 80;
		if (intHeight < 450) {
			intHeight = 450;
		}
	}
	
	function checkSize(oEl, intLength) {
		if (oEl.value.length >= intLength) {
			return false;
		} else {
			return true;
		}
	}
	
	function initPage() {
		try {
			loadEvents();
		} catch (e) {
		}
		sizeScreen();
		init();
	}
	
	function mOut(oEl) {
		oEl.className = 'menu';
		window.status = '';
	}
	
	function mOver(oEl, strStatus) {
		oEl.className = 'menu_over';
		window.status = strStatus;
	}

	window.onload = initPage;
	window.onresize = sizeScreen;
