
function addToFavorites(url){
	var title="Veolia Environmental Services";
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title,url,"");
	} else if (window.external) { // IE Favorite
		window.external.AddFavorite( url, title); 
	}	else if (window.opera && window.print){ // Opera Hotlist
		return true;
	}
}


function printPage(){
	window.print();
}

function LaunchPopup(url, width, height, scrollbars, resizable, status) {
	var intXPos = (screen.width / 2) - (width / 2)
	var intYPos = (screen.height / 2) - (height / 2)
	var popUpWin = open(url, '', 'toolbar=no,menubar=no,scrollbars=' + scrollbars + ',resizable=' + resizable + ',status=' + status + ',location=no,directories=no,copyhistory=no,height='+height+',width='+width+',left='+intXPos+',top='+intYPos);
}

function SendToFriend(url) {
    LaunchPopup('/send-to-a-friend.asp?id='+url, 400, 340, 'yes', 'no', 'no')
}
