<!--

function enlarge1(url)
{
var x = (screen.width - 640)/2;
var y = (screen.height - 480)/2;

var param = 'width=680 height=480,left='+x+',top='+y+',directories=no,location=no,menubar=no,status=no,toolbar=no,history=no,scrollbars=1';

var thewin = window.open("blank.html","_blank",param);

thewin.document.write('<html><head><title>');

thewin.document.write('A FineExoticLeather.com Exclusive Product');
//thewin.document.write('</title></head><body style="background-image:url(\'');
thewin.document.write('</title></head><body><img src="');
thewin.document.write(url);
//thewin.document.write('\');background-repeat:no-repeat;background-position:center"></body></html>');
thewin.document.write('"></body></html>');

}

//-->