function wopen(image, w, h, name) {
	ow = window.open('', 'ow', 'width='+w+',height='+h+',menubar=no,toolbar=no,location=no,status=no,directories=no,left=100,top=100');
	ow.document.open();
	ow.document.write('<html><head><title>Detail</title></head><body><image src="'+image+'" /></body></html>');
	ow.document.close();
	return false;
}

