<!-- hide JavaScript from non-enabled browsers

function newwin(pic,width,height) {

	var agt=navigator.userAgent.toLowerCase();

 	var is_major = parseInt(navigator.appVersion);
    	var is_minor = parseFloat(navigator.appVersion);
	
	var is_nav  = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
                && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
                && (agt.indexOf('webtv')==-1));
                
                
        var is_nav4up = (is_nav && (is_major >= 4));        
                
	var is_ie = (agt.indexOf("msie") != -1);          
	var is_ie3  = (is_ie && (is_major < 4));
    	var is_ie4  = (is_ie && (is_major == 4) && (agt.indexOf("msie 5.0")==-1) );
	var is_ie5up  = (is_ie  && !is_ie3 && !is_ie4);

	if (is_ie)
	{ width = width + 3;
	height =  height + 12;}

      	width = width + 17;
      	height = height + 16;

	var winsize = "'menubar=0,status=0,toolbar=0,scrollbars=0,resizeable=0,top=0";
	winsize += ",width=" + width + ",height=" + height +"'";


	if (is_nav4up)
	{ winpopup = window.open (pic,'pic',winsize);
	winpopup.close(); }

	if (is_ie5up)
	{ winpopup = window.open (pic,'pic',winsize);
	winpopup.close(); }


	winpopup = window.open (pic,'pic',winsize);

	
	}

// end hide -->
