// JavaScript Document
//if (top.location != location) top.location.href = location.href;
function openNewslist(filename,classid){
	if(filename == 'newslist')location.href='/news/list.php?classid='+ classid;
	if(filename == 'houselist')location.href='/house/list.php?classid='+ classid;
	if(filename == 'houseleshow')window.open('/house/show.php?id='+ classid);
	if(filename == 'pclist')location.href='/pc/list.php?classid='+ classid;
}
function calculate_byte(sTargetStr) {
	var sTmpStr, sTmpChar;
	var nOriginLen = 0;
	var nStrLength = 0;
	sTmpStr = new String(sTargetStr);
	nOriginLen = sTmpStr.length;
	for ( var i=0 ; i < nOriginLen ; i++ ) {
			sTmpChar = sTmpStr.charAt(i);
			if (escape(sTmpChar).length > 4) {
					nStrLength += 2;
			} else if (sTmpChar!='\r') {
					nStrLength ++;
			}
	}
	return nStrLength; 
}

