// JavaScript Document
function redirectPage(hash, en) {
	if(en){
	var openPage = "siteeng.htm"+hash;
	}else{
		var openPage = "site.htm"+hash;
	}
	if (screen.width > 1280){
		var width = 1280 - 12;
		if (screen.height>1100) {
			var height = 1100 - 30;
		}else{
			var height = screen.availHeight - 30;
		}
		var bw = 0;
		var bh = 0;
		paramString = "'toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=no,left=" + bw + ",top=" + bh + ",width=" + width + ",height=" + height + "'";		
		mjb = window.open(openPage, "pokopano", paramString);
	} else if (screen.width < 1000){
		var width = screen.availWidth - 12;
		var height = screen.availHeight - 30;
		var bw = 0;
		var bh = 0;
		paramString = "'toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=no,left=" + bw + ",top=" + bh + ",width=" + width + ",height=" + height + "'";
		mjb = window.open(openPage, "pokopano", paramString);
	} else {
		window.location.href = openPage;
	}
}

