﻿function picWin(theW, theH, theImg){
//alert('image.aspx?img=' + theImg,'6-AM','status=no,width=' + theW + ',height=' + theH +',scrollbars=no');
    var theW = theW + 20;
    var theH = theH + 20;
		var newWin = window.open(theImg,'sixAM','width=' + theW + ',height=' + theH +',toolbar=0,scrollbars=0,location=0,menubar=no,directories=0');
	if(newWin && newWin.open){newWin.focus();}	
	}
