var newWin = null;
var which = null;
var page = null;
var w = null;
var h = null;
var options = null;

photoWs = new Array();
photoWs[1] = '500';
photoWs[2] = '500';
photoWs[3] = '500';
photoWs[4] = '500';
photoWs[5] = '500';
photoWs[6] = '500';
photoWs[7] = '500';
photoWs[8] = '500';
photoWs[9] = '500';
photoWs[10] = '500';
photoWs[11] = '500';
photoWs[12] = '500';
photoWs[13] = '500';
photoWs[14] = '500';
photoWs[15] = '500';
photoWs[16] = '500';
photoWs[17] = '500';
photoWs[18] = '500';
photoWs[19] = '500';
photoWs[20] = '500';

photoHs = new Array();
photoHs[1] = '263';
photoHs[2] = '328';
photoHs[3] = '388';
photoHs[4] = '270';
photoHs[5] = '297';
photoHs[6] = '330';
photoHs[7] = '354';
photoHs[8] = '524';
photoHs[9] = '373';
photoHs[10] = '302';
photoHs[11] = '307';
photoHs[12] = '244';
photoHs[13] = '244';
photoHs[14] = '398';
photoHs[15] = '411';
photoHs[16] = '159';
photoHs[17] = '298';
photoHs[18] = '404';
photoHs[19] = '379';
photoHs[20] = '348';

function openWin(when,which){
	page = 'images/dnw/' + when + which + '.html';
	
	num = which.toString(10);
	
	if(when == 'pre'){
		h = photoHs[num];
		w = photoWs[num];
	}else if(when == 'post'){
		digit = which + 4;
		num = digit;
		h = photoHs[num];
		w = photoWs[num];
	}
	
	options = 'height=' + h + ',width=' + w + ',resizable=no,status=no,scrollbars=no,resizable';
	
	newWin = window.open(page,'photoWin',options);
}