// JavaScript Document
function moreinfowindow(url,h,w,t,l,n) {
	if (h==undefined) { h=400 }
	if (w==undefined) { w=400 }
	if (t==undefined) { t=50 }
	if (l==undefined) { l=50 }
	if (n==undefined) { n='moreinfo'}
	var options = 'height=' + h + ',width=' + w + ',top=' + t + ',left=' + l + ',status=no,resizable=yes,scrollbars=yes';
	window.open(url, n , options);
}