	function openSlideShow(id) {
    	var url = "http://flickr.com/slideShow/index.gne?set_id="+id
    	var w = window.open(url, '_blank', 'width=500,height=500');
    	if (w) w.focus()
    	return false;
    }
    function openNewWindowPortrait(theURL) {
        var w = window.open(theURL, '_blank', 'width=400,height=530');
        if (w) w.focus()
        return false;
	}
	function openNewWindowLandscape(theURL) {
        var w = window.open(theURL, '_blank', 'width=530,height=400');
        if (w) w.focus()
        return false;
	}

