function EnlargeThumbnailWithHTML(img,title,w,h){
var c = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"'
+'"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'
+'<html xmlns="http://www.w3.org/1999/xhtml">'
+'<head><title>DJ Tacee || ' + title + '<\/title><\/head>'
+'<body style="margin: 0; padding: 0; overflow: hidden;" bgcolor="#727272">'
+'<a href="javascript:void(0);" onclick="self.close();">'
+'<img alt="' + title + '" src="' + img + '" width="' + w + '" height="' + h + '" vspace="0" hspace="0" border="0" />'
+'<\/a>'
+'<\/body>'
+'<\/html>';
   //gets top and left positions based on user's resolution so new window is centered.
   var screenwidth =  window.screen.width;
   var screenheight = window.screen.height;
   var left = ((screenwidth - w)/2) - 8;
   var top = ((screenheight - h)/2) - 25;
pwp = 'width=' + w + ',height=' + h + ",menubar=no,toolbar=no,resizable=no,left=" + left + ",top=" + top + ",screenX=" + left + ",screenY=" + top + ",scrollbars=no";
PictureWindow=window.open("","ImageZoom",pwp);
PictureWindow.document.write(c);
PictureWindow.document.close();
PictureWindow.focus();
}
