function openPopUp(strFile, strName, intLeft, intTop, intWidth, intHeight)
{
	var strProperties = 'toolbar=no,width='+Math.round(intWidth)+',height='+Math.round(intHeight)+',left='+Math.round(intLeft)+',top='+Math.round(intTop)+','+'status=no,scrollbars=yes,resizable=yes,menubar=no';
	tmpWin = window.open(strFile,strName,strProperties);
	tmpWin.focus();
}

function openPdf(strFile, strName, intLeft, intTop, intWidth, intHeight)
{
	var strProperties = 'toolbar=no,width='+Math.round(intWidth)+',height='+Math.round(intHeight)+',left='+Math.round(intLeft)+',top='+Math.round(intTop)+','+'status=no,scrollbars=yes,resizable=yes,menubar=yes';
	tmpWin = window.open(strFile,strName,strProperties);
	tmpWin.focus();
}

function bookmarksite(title,url)
{
  if (window.sidebar)
  {
  	window.sidebar.addPanel(title, url, "");
  }
  else if(window.opera && window.print)
  {
  	var elem = document.createElement('a');
  	elem.setAttribute('href',url);
  	elem.setAttribute('title',title);
  	elem.setAttribute('rel','sidebar');
  	elem.click();
  } 
  else if(document.all)
  {
  	window.external.AddFavorite(url, title);
  }
}

