	function open_window(url){
		if(screen){
			var left=screen.width-475;
		}else var left=0;
		var enlarged_daily=window.open(url, 'Large_Card_of_the_Day', 'resizable=1,scrollbars=1,top=0,left='+left+',height=400,width=450');
		enlarged_daily.focus();
	}
	function cardOday(){
		var winurl = "/show_daily_card.php";
		open_window(winurl);
	}
	
