	function openPrivacyPopUp(){
    	var width = 350;
        var height = 320;
        var flash_width = 850;
        var left_margin = (screen.width-flash_width)/2;
        var window_x = 75+left_margin;
        var window_y = 150;
    	//alert(filename);
    	var option_string =  'toolbar=0,scrollbars=1, location=0,statusbar=0,';
        	option_string += 'menubar=0,resizable=1, width='+width+',height='+height+',';
            option_string += 'left=' + window_x + ',top=' + window_y;
    	window.open('privacy.html', 'privacy', option_string);
    }