function tipHTML(img,title,type,total,logo,company){

var div = '<div class="image-preview" style="font-family:verdana, arial, sans-serif;">';
div += '<img src=" ' + img + '"';
  //if (type=='DL')  { div +=  ' style="height: 50%; width: 50%;"  ' }  //taking this out
 div += ' >';
div += '<h2 style="font-size:11px;padding:0 5px;margin:5px 0;font-weight:bold">' + title + '</h2>';
if (logo!='') { div +=  '<p style="float:right;font-size:9px;margin:-10px 0 0 0; font-family:tahoma, sans-serif;color:#666;">Photo gallery sponsored by <img src="'+ logo  +' " width="60" height="30" alt="' + company + ' "  style="vertical-align:middle;border:solid 1px #eee;padding:5px;margin:7px 5px;"/></p>' }
div += '<p style="font-size:10px;padding:0 5px;margin:0"><img src="/i/c/v2/ico/camera.gif" width="15" height="11"  /> Photo 1 of '+ total + '</p>';
return  div;
}

