function openSmallWindow(name, width, height){
	window.open(name,"Cam","width="+width+",height="+height);
}

if(parent.document.URL)
{
callingURL = parent.document.URL
listenline = '<TR><TD><a href=/listen.cfm><img src=images/2a.jpg width=180 height=67 border=0></a></TD></TR>';
lookline = '<TR><TD><a href=/index.cfm?page=look><img src=images/3a.jpg width=180 height=64 border=0></a></TD></TR>';
readline = '<TR><TD><a href=/index.cfm?page=read><img src=images/4a.jpg width=180 height=65 border=0></a></TD></TR>';
buyline = '<TR><TD><a href=/index.cfm?page=buy><img src=images/5a.jpg width=180 height=65 border=0></a></TD></TR>';
linkline = '<TR><TD><a href=/index.cfm?page=link><img src=images/6a.jpg width=180 height=65 border=0></a></TD></TR>';
contactline = '<TR><TD><a href=/index.cfm?page=contact><img src=images/7a.jpg width=180 height=69 border=0></a></TD></TR>';
if (callingURL.indexOf('=') != -1)
{
linkURL = callingURL.substring 
	(callingURL.indexOf('=')+1,
	callingURL.length);
if (linkURL=='look')
{
lookline = '<TR><TD><a href=/index.cfm?page=look><img src=look/A2_on.jpg width=180 height=64 border=0></a></TD></TR>';
}
if (linkURL=='link')
{
linkline = '<TR><TD><a href=/index.cfm?page=link><img src=link/link_on.jpg width=180 height=65 border=0></a></TD></TR>';
}
if (linkURL=='buy')
{
buyline = '<TR><TD><a href=/index.cfm?page=buy><img src=buy/5A_on.jpg width=180 height=65 border=0></a></TD></TR>';
} 
if (linkURL=='contact')
{
contactline = '<TR><TD><a href=/index.cfm?page=contact><img src=contact/7A_on.jpg width=180 height=69 border=0></a></TD></TR>';
}
if (linkURL=='read')
{
readline = '<TR><TD><a href=/index.cfm?page=read><img src=read/4A_on.jpg width=180 height=65 border=0></a></TD></TR>';
}
}
if (callingURL.indexOf('listen') != -1)
{
listenline = '<TR><TD><a href=/listen.cfm><img src=listen/A2_on.jpg width=180 height=67 border=0></a></TD></TR>';
}
document.write('<TABLE border=0 cellpadding=0>');
document.write('<TR><TD><a href=/index.cfm><img src=images/A1.jpg width=180 height=174 border=0></a></TD></TR>');
document.write(listenline);
document.write(lookline);
document.write(readline);
document.write(buyline);
document.write(linkline);
document.write(contactline);
document.write('</TABLE>');

}

