// FOOT PANEL
// Set page as start-up
function setAsStartUp(_elm, _address) {
	_elm.style.behavior='url(#default#homepage)';
	_elm.setHomePage(_address);
}
// Add site to favorites
function addFavorites(_address) {
	if ((navigator.appVersion.indexOf('MSIE') > 0) && (parseInt(navigator.appVersion) >= 4)) {
	  window.external.AddFavorite(_address, document.title); }
}
// Open administrator page
function getAdminPage(_srcPPack) {
  _url = '../../Admin/admLogin/adLogin.aspx?srcPPack=' + _srcPPack;
  var _win = window.open('', 'NN_Administrator');
  _win.location.href = _url;
  _win.opener = window;
  if ( !_win.closed ) { _win.focus(); }
}
// On input request focus
function onInputFocus(elm) {
  elm.select();
}

/*
// On support button language click
function onLangButton(_srcPPack) { 
  document.location.href = '../../Pages/pgsMain/pgHome.aspx?srcPPack=' + _srcPPack;
}

// Go to History article by item ID
function goHistPubl(_artID, _srcPPack) {
  document.location.href = '../pgsInner/pgHistory.aspx?' +
      'artID=' + _artID + '&srcPPack=' + _srcPPack;
}
// Go to Festival article by item ID
function goFestPubl(_artID, _srcPPack) {
  document.location.href = '../pgsInner/pgFestival.aspx?' +
      'artID=' + _artID + '&srcPPack=' + _srcPPack;
}
// Go to Gallery article by item ID
function goGallPubl(_artID, _srcPPack) {
  document.location.href = '../pgsInner/pgGallery.aspx?' +
      'artID=' + _artID + '&srcPPack=' + _srcPPack;
}
*/
