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='search'/><br/><font size=1>Enter ISBN in any variation.</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://wms.assoc-amazon.co.uk/20070822/GB/html/searchbox_27.html?t=isbnsearch-21\" width=\"180\" height=\"150\" frameborder=\"0\" scrolling=\"no\"></iframe>";
	}
	else if(pType == "small")
	{
		document.getElementById("searchField").innerHTML = "<iframe src=\"http://wms.assoc-amazon.co.uk/20070822/GB/html/searchbox_20.html?t=isbnsearch-21\" width=\"120\" height=\"90\" frameborder=\"0\" scrolling=\"no\"></iframe>";
	}
}




