
$(document).ready(function() {
	
	$("#flashHome").click(function(){                        
                
                w = 983;
                h = 650;
                wleft = (screen.width - (w )) / 2;
                wtop = (screen.height - (h + 40 )) / 2;
		
                var win = window.open($(this).attr("href"),
                                'evolution',
                                'width=' + w + ', height=' + h + ', ' +
                                'left=' + wleft + ', top=' + wtop + ', ' +
                                'location=no, menubar=no, ' +
                                'status=no,resizable=no, toolbar=no, scrollbars=no');
	
                // Just in case left and top are ignored
                win.moveTo(wleft, wtop);
                win.focus();   
                
                $("#inner").css({
                                backgroundImage: "url(/images/evolution_postit_thanks.png)",
                                height: "212px",
                                width: "285px"});
                                
                $("#postit").css({marginLeft: "40px"});
                
                $("#flashHome").css({height: "70px", top: "90px", width: "160px"});
                $("#htmlHome").hide();
                
                return false;           
        });       
});
	



