<!-- Begin
function ViewImage(ifile,ix,iy,ititle) { 
self.name = "main"; // names current window as "main"
var win;
var sWidth;
var sHeight;
var NS = (document.layers) ? 1 : 0;
win = window.open("","imageviewer","width="+ix+",height="+iy+",menubar=no,toolbar=no");
if (NS) {
sWidth = win.innerWidth;
sHeight = win.innerHeight;
} else {
sWidth = win.document.body.clientWidth;
sHeight = win.document.body.clientHeight;
}
if(sWidth!=ix || sHeight!=iy) {
win.close();
setTimeout("ViewImage('"+ifile+"',"+ix+","+iy+",'"+ititle+"')", 250);
return;
}
win.document.open();
win.document.write("<html><head><title>"+ititle+"</title>");
win.document.write("<script language=JavaScript type=text/javascript>");
win.document.write("<!-- Begin");
win.document.write("function closeRemote() {");
win.document.write("timer = setTimeout('window.close();', 10);");
win.document.write("}");
win.document.write("// End -->");
win.document.write("</script>");
win.document.write("</head><body background='http://datingswingers.net/images/swingers-tour1.jpg' bgcolor='#ffffff'>");
win.document.write('<div style="position:absolute;width:'+ix+'px;height:'+iy+'px;left:0px;top:0px">');
win.document.write("<a href=http://fetish.imlive.com/?WID=123458024250 onClick=closeRemote() target=main><img src="+ifile+" alt=click.for.your.webcam.fetish border=0></a></div><div align="center">
<!-- AddThis Button BEGIN -->
<script type="text/javascript">addthis_pub  = 'swinger';</script>
<a href="http://www.addthis.com/bookmark.php" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s9.addthis.com/button0-share.gif" width="83" height="16" border="0" alt="" /></a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
<!-- AddThis Button END -->
</div>
</body></html>");
win.document.close();
}
//  End -->