/*	Web Form Popups	*/
/*	source = popups.js	*/
	var newwindow;
	function poptastic(url)
	{
	newwindow=window.open(url,'name','height=450,width=675,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	// crecit:  http://www.yourhtmlsource.com/javascript/popupwindows.html
	}

/* Bookmark */
/* source = bookmark.js */
/* Modified to support Opera */
	function bookmarksite(title,url){
	if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
	else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
	} 
	else if(document.all)// ie
	window.external.AddFavorite(url, title);
	}