	function fnSiteUrlAppend(frmObj){
		frmAction = frmObj.action;
		frmObj.action = '/lpc'+frmAction;
		frmObj.submit();
	}
  function chatView(id)
  {
	imgsrc = "http://www.leeprint.com/"+id;
	
	if (!window.imgWin) {
		// has not yet been defined
        imgWin = window.open('http://www.leeprint.com/Chat.html',"chatView","width=275,height=262");
    }
    else {
        // has been defined
		if (!imgWin.closed) {
			// still open
            imgWin.close();
        }
		imgWin = window.open("","chatView","width=275,height=262");
    }

  }
