// JavaScript Document
function lmOn(obj) {
	obj.style.backgroundPosition = "-180px 0px";
}

function lmOff(obj) {
	obj.style.backgroundPosition = "0px 0px";
}

function openWin(url) {
	window.open(url);
	return false;
}

function trim(str){
	return String(str).replace(/^[ @\n\r\t]*/gim, "");
}
function ltrim(str){
	return String(str).replace(/^[ @\n\r\t]*/gim, "");
}
function rtrim(str){
	return String(str).replace(/[ @\n\r\t]*$/gim, "");
}