function OW(fln, width, height, name){
 PU('http://www.azur.co.nz/d/' + fln, width, height,name,false,true,false,false,false);
 return true;
}

function PU (url,x,y,name,sb,rs,st,lt,tb) {
	var win = null;
	var scrollbarstext = 'scrollbars = yes,';
	var resizabletext = 'resizable = yes,';
	var statustext = 'status = no,';
	var locationtext = 'location = no,';
	var toolbartext = 'toolbar = no,';
	var features = '';
	if (sb == 1){scrollbarstext = 'scrollbars = yes,'}
	if (rs == 1){resizabletext = 'resizable = yes,'}
	if (st == 1){statustext = 'status = yes,'}
	if (lt == 1){locationtext = 'location = yes,'}
	if (tb == 1){toolbartext = 'toolbar = yes,'}
	features = scrollbarstext+resizabletext+statustext;
	features = features + locationtext+toolbartext;
	features = features + 'width = '+x+',height = '+y;
	win = window.open(url, name, features);
}