// JavaScript Document

function album(care){		
	var imagine="../assets/album/"+care+".jpg";

	latime = 600;
	inaltime = 460;
	
	wind = window.open('','_blank','fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0, scroll=auto');
	wind.resizeTo(latime+10,inaltime+14);
	x = (screen.width-latime+10)/2;
	x = x < 0 ? 0 : x;
	y = (screen.height-inaltime+14)/2;
	y = y < 0 ? 0 : y;
	wind.moveTo(x,y);
	
	wind.document.write("<html><head><title>Bikeswitzerland - Photo Album</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"><link href=\"../script/all.css\" rel=\"stylesheet\" type=\"text/css\"></head><body bgcolor=\"#FFFFFF\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\"><div align=\"center\">  <table width=\"600\"  border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td width=\"600\" align=\"center\" valign=\"top\"><a href=\"javascript:close()\"><img src=\""+imagine+"\" width=\"600\" height=\"450\" border=\"0\"></a></td></tr></table></div></body></html>");
}         
