function openScript(url, width, height) {
				Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no,status=no' );
				Win.focus();
			}
			
function bookmark() {
	
	var sUrl = location.href;
	var sTitle = document.title;

	$(".bookmark").click(function(){
		if($.browser.msie) {
			window.external.AddFavorite(sUrl, sTitle); // IE/Win
		} else if($.browser.mozilla) {
			$(this).attr("title",sTitle);
		} else if($.browser.opera) {
			void(0);
		} else if($.browser.safari) {
			alert('You need to press CTRL/Cmd + D to bookmark our site.');	
		} else {
			alert('In order to bookmark this site you need to do so manually through your browser.');
		}
	});

}