function websPrint(url, width, height) {
	window.open(url,"popup","width=" + width + ",height=" + height + ",menubar=yes,scrollbars=yes,resizable=yes");
}
function websPopup2(url, width, height) {
	window.open(url,"popup","width=" + width + ",height=" + height + ",menubar=no,scrollbars=no,resizable=no");
}
function websPopupVariable(url, width, height, bar, scroll, resize) {
	window.open(url,"popup","width=" + width + ",height=" + height + ",menubar=" + bar + ",scrollbars=" + scroll + ",resizable=" + resize);
}
function websPopup(url, width, height) {
	window.open(url,"popup","width=" + width + ",height=" + height + ",menubar=no,scrollbars=no,resizable=yes");
}
function bookmark(anchor){
   if(window.external)
   {
       window.external.AddFavorite(anchor.getAttribute('href'), anchor.getAttribute('title'));
       return false;
   }
   return true;
} 
