/* RollsRox.com 2007 */

/*
  Examples:
  roxband('left'); // left band
  roxband('right'); // right band
  roxband(); // default right band
 */
function roxband(position) {
document.write('<style><!-- @import url(http://www.rollsrox.com/roxbands/roxbands.css); --></style>');
var right=true;
if(position=='left'){
  right=false;
}
document.write('<div class="roxband roxband'+(right?'Right':'Left')+'"><img src="http://www.rollsrox.com/'+
  'roxbands/transparent.gif" width="100" height="100" border="0" usemap="#rollsrox'+
  (right?'Right':'Left')+'"></div><map name="rollsrox'+(right?'Right':'Left')+'">'+
  '<area shape="poly" coords="'+(right?'0,0,100,100,100,70,30,0':'100,0,0,100,0,70,70,0')+
  '" href="http://www.rollsrox.com" target="_top"></map>');
}
