function flipOn(link)
{
 img = link.childNodes[0];
 img.src=img.src.replace("OFF","ON");
}

function flipOff(link)
{
 img = link.childNodes[0];

 img.src=img.src.replace("ON","OFF");
}

function setInformation(title,size,media,price,description)
{
 text="<i><b>"+title+"</b></i><br>\n"
 text+=size+" "+media+"<br>\n"
 text+=price+"\n"

 text+=(description!=""?"<br><br>"+description:"");

 text+=(price!=""&&price!="Sold"?"<br><br><i><a href='mailto:info@lyndaabromeit.com'>Contact Lynda</a> for information on purchasing</i>":"");
 document.getElementById("information").innerHTML=text
}

function flipShowCase(link)
{
 imgHeight=300
 img = link.childNodes[0];
 document.images["showcase"].height=imgHeight;
 document.images["showcase"].width=(imgHeight*img.width)/img.height-2;
 document.images["showcase"].src = img.src;
 document.images["showcase"].alt = img.alt;
 document.images["showcase"].title = img.title;
 title=img.title;
 description = img.attributes["description"].value
 size = img.attributes["size"].value;
 media = img.attributes["media"].value;
 price = img.attributes["price"].value;
 setInformation(title,size,media,price,description);
}