// JScript source code

function email_me(){
  var el = document.getElementById('go');
  var a = 'postmas';
  var b = 'ter@ku';
  var c = 'lch.spb.ru';
  el.href = 'mailto:'+a+b+c;
  return false;
}

function SetStyle(el, stylename){
	if(el == null)
		return;
	el.className = stylename;
}

function GoToLocation(location){
	document.location = location;
}

