function wopen(page, w, h) {
	var scrollb = 'no';
	if (w > 800) { w=800; scrollb ='yes' }
	if (h > 600) { h=600; scrollb ='yes' }
	h = h + 40;
	var ow = window.open(page, 'ow', 'width='+w+',height='+h+',scrollbars='+scrollb+',menubar=no,toolbar=no,location=no,status=no,directories=no,left=100,top=100');
	return false;
}

function wfopen(page, w, h) {
	var scrollb = 'no';
//	if (w > 600) { w=600; scrollb ='yes' }
//	if (h > 500) { h=500; scrollb ='yes' }
	h = h + 40;
	var ow = window.open('', 'ow', 'width='+w+',height='+h+',scrollbars='+scrollb+',menubar=no,toolbar=no,location=no,status=no,directories=no,left=100,top=100');
	ow.document.open();
	ow.document.write('<html><head><title></title></head><body>');
	ow.document.write('<img src="'+page+'" alt="" />');
	ow.document.write('</body></html>');
	ow.document.close();

	return false;
}

