var newWin = null;
var which = null;
var page = null;
var w = '425';
var h = null;
var options = null;

photoWs = new Array();
photoWs[1] = '800';
photoWs[2] = '800';
photoWs[3] = '800';
photoWs[4] = '800';
photoWs[5] = '800';
photoWs[6] = '550';
photoWs[7] = '591';
photoWs[8] = '518';
photoWs[9] = '557';
photoWs[10] = '800';
photoWs[11] = '551';
photoWs[12] = '800';

photoHs = new Array();
photoHs[1] = '640';
photoHs[2] = '593';
photoHs[3] = '641';
photoHs[4] = '640';
photoHs[5] = '575';
photoHs[6] = '700';
photoHs[7] = '700';
photoHs[8] = '700';
photoHs[9] = '700';
photoHs[10] = '606';
photoHs[11] = '700';
photoHs[12] = '661';

function openWin(when,which){
	page = 'images/previews/' + when + which + '.html';
	
	num = which.toString(10);
	
	if(when == 'AV'){
		h = photoHs[num];
		w = photoWs[num];
	}else if(when == 'AN'){
		digit = which + 3;
		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);
}