
function imageWin(website, ww, hh) {
 var winwidth = screen.availWidth;
 var winheight = screen.availHeight;
 var width = ww+40;
 var height = hh+40;
 var xx = (winwidth-width)/2;
 var yy = (winheight-height)/2;
  if (document.all) {
    var sizer = window.open("","","left="+xx+",top="+yy+",width="+width+",height="+height);
    sizer.location = "/showImage.php?ref="+website;
  }
	else
	{
    var sizer = window.open("","abc","left="+xx+",top="+yy+",width="+width+",height="+height);
    sizer.location = "/showImage.php?ref="+website;
	}
}

function newWin(website, ww, hh) {
 var winwidth = screen.availWidth;
 var winheight = screen.availHeight;
 var width = ww+10;
 var height = hh+10;
 var xx = (winwidth-width)/2;
 var yy = (winheight-height)/2;
  if (document.all) {
    var sizer = window.open("","","left="+xx+",top="+yy+",width="+width+",height="+height);
    sizer.location = website;
  }
	else
	{
    var sizer = window.open("","abc","left="+xx+",top="+yy+",width="+width+",height="+height);
    sizer.location = website;
	}
}
