function iget(n){
	return document.getElementById(n);
}
/*$(document).ready(function(){
 $.fn.alignCenter = function() {
   var marginLeft = Math.max(40, parseInt($(window).width()/2 - $(this).width()/2)) + 'px';
   var marginTop = Math.max(40, parseInt($(window).height()/2 - $(this).height()/2)) + 'px';
   return $(this).css({'margin-left':marginLeft, 'margin-top':marginTop});
  };
});
function showPopup(popup_type){
 if (!$.browser.msie) {$('#opaco').height($(document).height()).toggleClass('hiddden').fadeTo('slow', 0.7);}
 $('#popup')
   .html($('#popup_' + popup_type).html())
   .alignCenter()
   .toggleClass('hiddden');
  return false;
}

function closePopup()
{ 
  $('#popup').toggleClass('hiddden');
  $('#popup').html('');
  if (!$.browser.msie) {$('#opaco').toggleClass('hiddden').removeAttr('style');}
}*/
