function Bookmark(title, url) {
	if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
		window.external.AddFavorite(url,title);
  	} 
	else if (navigator.appName == "Netscape") {
    	window.sidebar.addPanel(title,url,"");
	}
	else if (window.opera && window.print) {
		var elem = document.createElement('a');
		elem.setAttribute('href', url);
		elem.setAttribute('title', title);
		elem.setAttribute('rel', 'sidebar');
		elem.click();
	} 
}

function PopupPic(img) {
	var src = "popup.php?" + img;
	var attrs = "";
	
	attrs += "status=0";
	attrs += ",toolbar=0";
	attrs += ",location=0";
	attrs += ",menubar=0";
	attrs += ",directories=0";
	attrs += ",resizable=1";
	attrs += ",scrollbars=0";
	attrs += ",height=400";
	attrs += ",width=500";
	
	newWindow = window.open(src, 'popup_image', attrs)
}

function Popup(src) {
	var attrs = "";
	
	attrs += "status=0";
	attrs += ",toolbar=0";
	attrs += ",location=0";
	attrs += ",menubar=0";
	attrs += ",directories=0";
	attrs += ",resizable=1";
	attrs += ",scrollbars=1";
	attrs += ",height=600";
	attrs += ",width=450";
	
	newWindow = window.open(src, 'popup', attrs)	
}
