	function ShowHideItem (id_item, id_item_status) {
		
           if (document.getElementById(id_item).style.display == 'none') {
                document.getElementById(id_item).style.display = ''
                document.getElementById(id_item_status).value = 1
           } else {
                document.getElementById(id_item).style.display = 'none'
                document.getElementById(id_item_status).value = 0
           }

    }
    
    function open_new_document(url) {
    	window.location = url
    }
    
	function OpenWin( Ref, W, H, X, Y, T ) {

        var WinParams = 'status=no,toolbar=no,resizable=yes,menubar=no,scrollbars=no,width=' + W + ',height=' + H + ',left=' + X + ',top=' + Y + ',screenX=' + X + ',screenY=' + Y;
        var w = window.open( 'about:blank', '', WinParams );

        w.document.open;
        w.document.write ('<html><head><title>' + T + '</title></head>' + '<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">'+ '<img src="' + Ref + '"alt="' + T + '"></body></html>');
        w.document.close;      
    }

	function initSlideShow() {

		var pattern = new RegExp("^\/proj\/[0-9]{1,}\.html$");
		if (pattern.test(window.location.pathname)) {
			document.getElementById('main-photo-slider').style.display = 'block';
			document.getElementById('pre-load').style.display = 'none'; 
			document.getElementById('movers-row').style.display = 'block';
			slideShowBody();
		}
	}
