function openwindow (htmlurl,w,h) {
	var stats = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes';
	window.open(htmlurl,'newWindow',stats + ",width=" + w + ',height=' + h);
}

