//   #####  ANFANG FUNKTION: Permutiere(N)
//   #####  Zufallssequenz aus den ersten N Ordnungszahlen
function Permutiere(Anzahl)
{
 var Zufallszahl;
 var Stelle = new Array();
 for(i = 0; i < Anzahl + 1; i++)  Stelle[i] = i;
 for(i = 1; i < Anzahl + 1; i++)
 {
  Zufallszahl = Math.round(Math.random() * (i - 1) ) + 1;
  X = Stelle[i];
  Stelle[i] = Stelle[Zufallszahl];
  Stelle[Zufallszahl] = X;  
 }
 return Stelle;   
}
//   #####  ENDE FUNKTION: Permutiere(N)  #####


function Books()
{

var AnzahlBuecher = 23;
var AnzahlAnzeigen = 5;

var Position = new Array();
Position = Permutiere(AnzahlBuecher);     // #####  Zufallsreihenfolge

var ASIN = new Array();
var Cover = new Array();

ASIN[1] = "0521559030";
Cover[1] = "<img src = \"../Books/Cover_Hdbk.jpg\" alt = \"Handbook of Research Methods in Social and Personality Psychology.\" height =140>"; 

ASIN[2] = "0385479425";
Cover[2] = "<img src = \"../Books/Cover_Etcoff_e.jpg\" alt = \"Etcoff: Survival of the prettiest.\" height =140 width =90>"; 

ASIN[3] = "0205193587";
Cover[3] = "<img src = \"../Books/Cover_Buss.jpg\" alt = \"Buss: Evolutionary Psychology.\" height =140 width =104>"; 

ASIN[4] = "0385495161";
Cover[4] = "<img src = \"../Books/Cover_Miller_e.jpg\" alt = \"Miller: The mating mind. How sexual choice shaped the evolution of human nature.\" height =140 width =93>"; 

ASIN[5] = "0684850818";
Cover[5] = "<img src = \"../Books/Cover_Buss_Passion.jpg\" alt = \"Buss: Dangerous Passion. Why Jealousy is as necessary as Love and Sex.\" height =140 width =89>"; 

ASIN[6] = "0691028958";
Cover[6] = "<img src = \"../Books/Cover_Low.jpg\" alt = \"Low: A Darwinian look at human behavior.\" height =140 width =92>"; 

ASIN[7] = "1557985278";
Cover[7] = "<img src = \"../Books/Cover_Geary.jpg\" alt = \"Geary: Male, Female: The Evolution of Human Sex Differences.\" height =140 width =96>"; 

ASIN[8] = "1557985278";
Cover[8] = "<img src = \"../Books/Cover_Mealey.jpg\" alt = \"Mealey: Sex Differences. Developmental and Evolutionary Strategies.\" height =140 width =110>"; 

ASIN[9] = "0316286850";
Cover[9] = "<img src = \"../Books/Cover_Aucoin.jpg\" alt = \"Aucoin & Rowlands: Making Faces.\" height =140 width =103>"; 

ASIN[10] = "0062730428";
Cover[10] = "<img src = \"../Books/Cover_Makeup.jpg\" alt = \"Aucoin: The Art of Makeup.\" height =140 width =110>"; 


ASIN[11] = "0316286443";
Cover[11] = "<img src = \"../Books/Cover_FaceForward.jpg\" alt = \"Aucoin: Face Forward.\" height =140 width =103>"; 

ASIN[12] = "0805832173";
Cover[12] = "<img src = \"../Books/Cover_Affect.jpg\" alt = \"Handbook of Affect and Social Cognition.\" height =140>"; 

ASIN[13] = "0684844419";
Cover[13] = "<img src = \"../Books/Cover_Clash.jpg\" alt = \"Huntington: The Clash of Civilizations and the Remaking of World Order.\" height =140 width =92>"; 

ASIN[14] = "0813327474";
Cover[14] = "<img src = \"../Books/Cover_Ze.jpg\" alt = \"Zebrowitz: Reading Faces. Window to the Soul?\" height =140 width =92>"; 

ASIN[15] = "0316588121";
Cover[15] = "<img src = \"../Books/Cover_McNeill_e.jpg\" alt = \"McNeill: The Face: A Natural History\" height =140 width =88>"; 

ASIN[16] = "0198524404";
Cover[16] = "<img src = \"../Books/Bruceyo.jpg\" alt = \"Bruce & Youg: In the Eye of the Beholder. The Science of Face Perception\" height =140 width =107>"; 

ASIN[17] = "0262531631";
Cover[17] = "<img src = \"../Books/Cover_Cole.jpg\" alt = \"Cole: About Face.\" height =140 width =92>"; 

ASIN[18] = "0393040046";
Cover[18] = "<img src = \"../Books/Cover_Quest.jpg\" alt = \"Robinson: The Quest for Human Beauty. An Illustrated History.\" height =140 width =108>"; 

ASIN[19] = "1567506372";
Cover[19] = "<img src = \"../Books/Cover_Rhodes.jpg\" alt = \"Facial Attractiveness. Evolutionary, Cognitive, and Social Perspectives.\" height =140>"; 

ASIN[20] = "0262611430";
Cover[20] = "<img src = \"../Books/Cover_Kunda.jpg\" alt = \"Kunda: Social Cognition.\" height =140>"; 

ASIN[21] = "0195104471";
Cover[21] = "<img src = \"../Books/Cover_FACS.jpg\" alt = \"What the Face Reveals.\" height =140>"; 

ASIN[22] = "0521596483";
Cover[22] = "<img src = \"../Books/Cover_HdbkIntelligence.jpg\" alt = \"Handbook of Inteligence\" height =140 width =108>"; 

ASIN[23] = "0789305127";
Cover[23] = "<img src = \"../Books/Cover_Beauty.jpg\" alt = \"Beauty: The 20th Century\" height =140 width =100>"; 



document.write('<table align="center" bgcolor="#993300" cellpadding = "5" border="0" bordercolor = "#FFBB22"><tr>');
for(i=1; i <= AnzahlAnzeigen; i++)
{
   x = Position[i];
  ASIN[x] = "<a href = \"http://www.amazon.com/exec/obidos/ASIN/" + ASIN[x] + "/femabeauhomepage\" target=\"_blank\">"; 
  document.write('<td>' + ASIN[x] + Cover[x] + '</a></td>');
}
document.write('</tr></table>');



}

