// JavaScript Document
function addFavorite(url, title) {
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url, "");
		return false;
	} else if(window.external) { // IE Favorite
		window.external.AddFavorite(url, title);
		return false;
	} else if( window.opera && window.print ) {
		/*var mbm = document.createElement('a');
		mbm.setAttribute('rel','sidebar');
		mbm.setAttribute('href',url);
		mbm.setAttribute('title',title);
		mbm.click();*/
    }
}

function LC_openfenetre(mypage,myname,w,h,scroll,resizable,pos){
	if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
	if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
	else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable='+resizable+'';
	win1=window.open(mypage,myname,settings);
	win1.focus(myname);
}

function popup(url, p_docid, w, h) {
	LC_openfenetre(url + '&p_docid=' + p_docid,'Print', w, h, 'yes','yes','center');	
}