function showIsbnSearch(pLastResult,pAction)
{

  
   
   
	document.getElementById("isbnSearchLink").setAttribute("href","");
	document.getElementById("isbnSearchLink").style.fontWeight = "bold";
	document.getElementById("isbnSearchLink").style.color = "#000";
	
	document.getElementById("alternativeSearchLink").setAttribute("href","#");
	document.getElementById("alternativeSearchLink").style.fontWeight = "normal";
	document.getElementById("alternativeSearchLink").style.color = "#aa0000";

	document.getElementById("searchField").innerHTML = "<form name='searchForm' method='post' action='"+pAction+"'><input type='hidden' name='action' value='search'/><input name='isbn' value='"+pLastResult+"'/>&nbsp;<input type='submit' value='suchen'/><br/><font size=1>Eingabe nach beliebigen Format.</font></form>";
}

function showAlternativeSearch(pType)
{
	document.getElementById("alternativeSearchLink").setAttribute("href","");
	document.getElementById("alternativeSearchLink").style.fontWeight = "bold";
	document.getElementById("alternativeSearchLink").style.color = "#000";
	
	document.getElementById("isbnSearchLink").setAttribute("href","#");
	document.getElementById("isbnSearchLink").style.fontWeight = "normal";
	document.getElementById("isbnSearchLink").style.color = "#aa0000";
	
	if(pType == "big")
	{
		document.getElementById("searchField").innerHTML = "<iframe src='http://rcm-de.amazon.de/e/cm?t=isbn-buchsuche-de-21&o=3&p=27&l=qs1&f=ifr' width='180' height='150' frameborder='0' scrolling='no'></iframe>";
	}
	else if(pType == "small")
	{
		document.getElementById("searchField").innerHTML = "<iframe src='http://rcm-de.amazon.de/e/cm?t=isbn-buchsuche-de-21&o=3&p=20&l=qs1&f=ifr' width='120' height='90' frameborder='0' scrolling='no'></iframe>";
	}
}



